diff --git a/client/gpu_amd.cpp b/client/gpu_amd.cpp index e8c7008457..e89640b22c 100644 --- a/client/gpu_amd.cpp +++ b/client/gpu_amd.cpp @@ -404,6 +404,10 @@ void COPROC_ATI::correlate( ati_gpus[i].description(buf, sizeof(buf)); if (in_vector(ati_gpus[i].device_num, ignore_devs)) { ati_gpus[i].is_used = COPROC_IGNORED; + } else if (this->have_opencl && !ati_gpus[i].have_opencl) { + ati_gpus[i].is_used = COPROC_UNUSED; + } else if (this->have_cal && !ati_gpus[i].have_cal) { + ati_gpus[i].is_used = COPROC_UNUSED; } else if (use_all || !ati_compare(ati_gpus[i], *this, true)) { device_nums[count] = ati_gpus[i].device_num; count++; diff --git a/client/gpu_nvidia.cpp b/client/gpu_nvidia.cpp index f279f525c5..895dc91c99 100644 --- a/client/gpu_nvidia.cpp +++ b/client/gpu_nvidia.cpp @@ -47,6 +47,36 @@ using std::string; static void get_available_nvidia_ram(COPROC_NVIDIA &cc, vector& warnings); +#ifndef _WIN32 + +static int nvidia_driver_version() { + int (*nvml_init)() = NULL; + int (*nvml_finish)() = NULL; + int (*nvml_driver)(char *f, unsigned int len) = NULL; + int dri_ver = 0; + void *handle = NULL; + char driver_string[81]; + + handle = dlopen("libnvidia-ml.so", RTLD_NOW); + if (!handle) goto end; + + nvml_driver = (int(*)(char *, unsigned int)) dlsym(handle, "nvmlSystemGetDriverVersion"); + nvml_init = (int(*)(void)) dlsym(handle, "nvmlInit"); + nvml_finish = (int(*)(void)) dlsym(handle, "nvmlShutdown"); + if (!nvml_driver || !nvml_init || !nvml_finish) goto end; + + if (nvml_init()) goto end; + if (nvml_driver(driver_string, 80)) goto end; + dri_ver = (int) (100. * atof(driver_string)); + +end: + if (nvml_finish) nvml_finish(); + if (handle) dlclose(handle); + return dri_ver; +} + +#endif + // return 1/-1/0 if device 1 is more/less/same capable than device 2. // factors (decreasing priority): // - compute capability @@ -323,7 +353,7 @@ void COPROC_NVIDIA::get( #elif defined(__APPLE__) cc.display_driver_version = NSVersionOfRunTimeLibrary("cuda"); #else - cc.display_driver_version = 0; + cc.display_driver_version = nvidia_driver_version(); #endif have_cuda = true; cc.have_cuda = true; @@ -367,6 +397,10 @@ void COPROC_NVIDIA::correlate( for (i=0; ihave_opencl && !nvidia_gpus[i].have_opencl) { + nvidia_gpus[i].is_used = COPROC_UNUSED; + } else if (this->have_cuda && !nvidia_gpus[i].have_cuda) { + nvidia_gpus[i].is_used = COPROC_UNUSED; } else if (use_all || !nvidia_compare(nvidia_gpus[i], *this, true)) { device_nums[count] = nvidia_gpus[i].device_num; pci_infos[count] = nvidia_gpus[i].pci_info; diff --git a/html/inc/boinc_db.inc b/html/inc/boinc_db.inc index 8beb38d111..1c471aa109 100644 --- a/html/inc/boinc_db.inc +++ b/html/inc/boinc_db.inc @@ -125,6 +125,27 @@ class BoincUser { } return self::$cache[$id]; } + static function lookup_auth($auth) { + $db = BoincDb::get(); + $auth = BoincDb::escape_string($auth); + return self::lookup("authenticator='$auth'"); + } + static function lookup_email_addr($email_addr) { + $db = BoincDb::get(); + $email_addr = BoincDb::escape_string($email_addr); + return self::lookup("email_addr='$email_addr'"); + } + static function lookup_name($name) { + $name = BoincDb::escape_string($name); + $users = BoincUser::enum("name='$name'"); + switch (sizeof($users)) { + case 1: + return $users[0]; + case 0: + return null; + } + return -1; + } static function count($clause) { $db = BoincDb::get(); return $db->count('user', $clause); diff --git a/html/inc/db.inc b/html/inc/db.inc index b1a138d9de..f7a82fb0bc 100644 --- a/html/inc/db.inc +++ b/html/inc/db.inc @@ -22,6 +22,9 @@ require_once('../inc/boinc_db.inc'); // database-related functions. // Presentation code (HTML) shouldn't be here +// DEPRECATED; use boinc_db.inc instead. +// TODO: replace calls to these functions + function db_init_aux($try_replica=false) { $config = get_config(); $user = parse_config($config, ""); @@ -58,34 +61,6 @@ function db_init_aux($try_replica=false) { return 0; } -function lookup_user_auth($auth) { - $auth = BoincDb::escape_string($auth); - return BoincUser::lookup("authenticator='$auth'"); -} - -function lookup_user_id($id) { - return BoincUser::lookup_id($id); -} - -function lookup_user_email_addr($email_addr) { - $e = BoincDb::escape_string($email_addr); - return BoincUser::lookup("email_addr='$e'"); -} - -function lookup_user_name($name) { - // TODO: is the following double escaped? Why? - $name = BoincDb::escape_string($name); - $users = BoincUser::enum("name='".boinc_real_escape_string($name)."'"); - if (sizeof($users)==1) { - return $users[0]; - } - return null; -} - -function lookup_host($id) { - return BoincHost::lookup_id($id); -} - function lookup_team($id) { return BoincTeam::lookup_id($id); } diff --git a/html/inc/forum.inc b/html/inc/forum.inc index af55f6381c..9c169f2264 100644 --- a/html/inc/forum.inc +++ b/html/inc/forum.inc @@ -704,7 +704,7 @@ function show_post_and_context($post, $thread, $forum, $options, $n) { $content = output_transform($post->content, $options); $when = time_diff_str($post->timestamp, time()); - $user = lookup_user_id($post->user); + $user = BoincUser::lookup_id($post->user); $title = cleanup_title($thread->title); $m = $n%2; if ($post->hidden) { diff --git a/html/inc/host.inc b/html/inc/host.inc index 00e3bc5316..610973bef2 100644 --- a/html/inc/host.inc +++ b/html/inc/host.inc @@ -99,7 +99,7 @@ function show_host($host, $user, $ipprivate) { if ($x >= 0) $x="+$x"; row2(tra("Local Standard Time"), tra("UTC %1 hours", $x)); } else { - $owner = lookup_user_id($host->userid); + $owner = BoincUser::lookup_id($host->userid); if ($owner && $owner->show_hosts) { row2(tra("Owner"), user_links($owner)); } else { diff --git a/html/inc/profile.inc b/html/inc/profile.inc index 0f03765818..9f924e0b6c 100644 --- a/html/inc/profile.inc +++ b/html/inc/profile.inc @@ -166,7 +166,7 @@ function scale_image( // of said user's profile. function get_profile_summary($profile) { - $user = get_user_from_id($profile->userid); + $user = BoincUser::lookup_id($profile->userid); if (!$user || !$profile) { error_page(tra("Database error")); diff --git a/html/inc/sandbox.inc b/html/inc/sandbox.inc index 9b67f98aae..b52176755a 100644 --- a/html/inc/sandbox.inc +++ b/html/inc/sandbox.inc @@ -25,16 +25,20 @@ require_once("../inc/dir_hier.inc"); // Return path of sandbox directory for the given user. // Create dir if not present. // +if (!function_exists("sandbox_dir")){ function sandbox_dir($user) { - if (!is_dir("../../sandbox")) { - mkdir("../../sandbox"); + $dir = parse_config(get_config(), ""); + if (!$dir) { $dir = "../../sandbox/"; } + if (!is_dir($dir)) { + mkdir($dir); } - $d = "../../sandbox/$user->id"; + $d = "$dir/$user->id"; if (!is_dir($d)) { mkdir($d); } return $d; } +} function sandbox_write_link_file($path, $size, $md5) { file_put_contents($path, "sb $size $md5"); @@ -65,6 +69,7 @@ function sandbox_lf_exist($user, $md5) { // parse a link file and return (error, size, md5) // function sandbox_parse_link_file($path) { + if (!file_exists($path)) { return array(true, null, null); } $x = file_get_contents($path); $n = sscanf($x, "%s %d %s", $s, $size, $md5); if ($n != 3) return array(true, null, null); @@ -104,11 +109,17 @@ function sandbox_file_names($user) { // return a \n"; + if ($allow_none) { + $x .= "\n"; + } $files = sandbox_file_names($user); foreach ($files as $f) { - if(preg_match("/$select_name/",$f)){ + if(preg_match("/$regexp/",$f)){ $x .= "\n"; } } diff --git a/html/inc/uotd.inc b/html/inc/uotd.inc index c81e73c95b..0ab0ec32cb 100644 --- a/html/inc/uotd.inc +++ b/html/inc/uotd.inc @@ -16,7 +16,7 @@ // You should have received a copy of the GNU Lesser General Public License // along with BOINC. If not, see . -require_once('../inc/db.inc'); +require_once('../inc/boinc_db.inc'); require_once('../inc/email.inc'); require_once('../inc/profile.inc'); @@ -34,7 +34,7 @@ function uotd_thumbnail($profile, $user) { // show UOTD in a small box // function show_uotd($profile) { - $user = lookup_user_id($profile->userid); + $user = BoincUser::lookup_id($profile->userid); echo uotd_thumbnail($profile, $user); echo user_links($user, true)."
"; $x = output_transform($profile->response1); @@ -61,7 +61,7 @@ function select_uotd() { $assigned = getdate($current_uotd->uotd_time); $now = getdate(time()); if ($assigned['mday'] == $now['mday']) { - $user = lookup_user_id($current_uotd->userid); + $user = BoincUser::lookup_id($current_uotd->userid); echo "Already have UOTD for today\n"; generate_uotd_gadget($current_uotd, $user); exit(); @@ -107,7 +107,7 @@ function select_uotd() { exit(); } $profile = mysql_fetch_object($result); - $user = lookup_user_id($profile->userid); + $user = BoincUser::lookup_id($profile->userid); // if profile is "orphaned", delete it and try again // diff --git a/html/inc/util.inc b/html/inc/util.inc index 2541359954..6fc1f88482 100644 --- a/html/inc/util.inc +++ b/html/inc/util.inc @@ -96,11 +96,6 @@ function clear_cookie($name, $ops=false) { setcookie($name, '', time()-3600, $path); } -function get_user_from_id($id) { - if ($id) return lookup_user_id($id); - return NULL; -} - $g_logged_in_user = null; $got_logged_in_user = false; diff --git a/html/ops/credit_study.php b/html/ops/credit_study.php index 1103dec3bd..20441ca814 100644 --- a/html/ops/credit_study.php +++ b/html/ops/credit_study.php @@ -97,7 +97,7 @@ function get_data() { $found_zero = false; while ($result = mysql_fetch_object($r2)) { if ($result->granted_credit==0) continue; // skip invalid - $host = lookup_host($result->hostid); + $host = BoincHost::lookup_id($result->hostid); $r = new StdClass; $r->cpu_time = $result->cpu_time; $r->p_fpops = $host->p_fpops; diff --git a/html/ops/manage_user.php b/html/ops/manage_user.php index d291d4ec4e..f3951c348f 100644 --- a/html/ops/manage_user.php +++ b/html/ops/manage_user.php @@ -294,7 +294,7 @@ if (!$id) { $id = post_int("userid", true); } if (!$id) error_page("No ID given"); -$user = lookup_user_id($id); +$user = BoincUser::lookup_id($id); if (!$user) error_page("No such user: $id"); BoincForumPrefs::lookup($user); diff --git a/html/ops/mass_email_script.php b/html/ops/mass_email_script.php index 441e14b1be..4872c697f8 100755 --- a/html/ops/mass_email_script.php +++ b/html/ops/mass_email_script.php @@ -311,7 +311,7 @@ if (!$USE_PHPMAILER) { $email_files = read_email_files(); if ($globals->userid) { - $user = lookup_user_id($globals->userid); + $user = BoincUser::lookup_id($globals->userid); if (!$user) { echo "no such user\n"; } else { diff --git a/html/ops/remind.php b/html/ops/remind.php index e14bf75d57..2313ede4fb 100755 --- a/html/ops/remind.php +++ b/html/ops/remind.php @@ -320,7 +320,7 @@ if (!$USE_PHPMAILER) { $email_files = read_email_files(); if ($globals->userid) { - $user = lookup_user_id($globals->userid); + $user = BoincUser::lookup_id($globals->userid); if (!$user) { echo "No such user: $globals->userid\n"; exit(); diff --git a/html/user/account_finish.php b/html/user/account_finish.php index 12c6b4f369..3a0acd3918 100644 --- a/html/user/account_finish.php +++ b/html/user/account_finish.php @@ -27,7 +27,7 @@ require_once('../inc/countries.inc'); check_get_args(array("auth")); $auth = get_str("auth"); -$user = lookup_user_auth($auth); +$user = BoincUser::lookup_auth($auth); if (!$user) { error_page("no such account"); } diff --git a/html/user/am_get_info.php b/html/user/am_get_info.php index 2a841b85ca..54f5b3056e 100644 --- a/html/user/am_get_info.php +++ b/html/user/am_get_info.php @@ -16,7 +16,7 @@ // You should have received a copy of the GNU Lesser General Public License // along with BOINC. If not, see . -require_once("../inc/db.inc"); +require_once("../inc/boinc_db.inc"); require_once("../inc/xml.inc"); xml_header(); @@ -27,7 +27,7 @@ if ($retval) xml_error($retval); check_get_args(array("account_key")); $auth = get_str("account_key"); -$user = lookup_user_auth($auth); +$user = BoincUser::lookup_auth($auth); if (!$user) { xml_error(ERR_DB_NOT_FOUND); } @@ -60,7 +60,7 @@ $user->project_prefs $user->venue"; if ($user->teamid) { - $team = lookup_team($user->teamid); + $team = BoincTeam::lookup_id_nocache($user->teamid); if ($team->userid == $user->id) { $ret = $ret . "\n"; } diff --git a/html/user/am_set_info.php b/html/user/am_set_info.php index c2e684fdf1..87d1b9f201 100644 --- a/html/user/am_set_info.php +++ b/html/user/am_set_info.php @@ -82,7 +82,7 @@ if ($auth) { $password_hash = get_str("password_hash", true); } -$user = lookup_user_auth($auth); +$user = BoincUser::lookup_auth($auth); if (!$user) { xml_error(ERR_DB_NOT_FOUND); } @@ -161,7 +161,7 @@ if (!is_null($teamid)) { if ($teamid==0) { user_quit_team($user); } else { - $team = lookup_team($teamid); + $team = BoincTeam::lookup_id_nocache($teamid); if ($team && $team->joinable) { user_join_team($team, $user); } diff --git a/html/user/create_account.php b/html/user/create_account.php index cc47d7ff65..cab335f328 100644 --- a/html/user/create_account.php +++ b/html/user/create_account.php @@ -18,7 +18,7 @@ // RPC handler for account creation -require_once("../inc/db.inc"); +require_once("../inc/boinc_db.inc"); require_once("../inc/util.inc"); require_once("../inc/email.inc"); require_once("../inc/xml.inc"); @@ -67,7 +67,7 @@ if (strlen($passwd_hash) != 32) { xml_error(-1, "password hash length not 32"); } -$user = lookup_user_email_addr($email_addr); +$user = BoincUser::lookup_email_addr($email_addr); if ($user) { if ($user->passwd_hash != $passwd_hash) { xml_error(ERR_DB_NOT_UNIQUE); diff --git a/html/user/create_account_action.php b/html/user/create_account_action.php index e0322f5216..86a75f23af 100644 --- a/html/user/create_account_action.php +++ b/html/user/create_account_action.php @@ -53,8 +53,8 @@ if ($privatekey) { // $teamid = post_int("teamid", true); if ($teamid) { - $team = lookup_team($teamid); - $clone_user = lookup_user_id($team->userid); + $team = BoincTeam::lookup_id($teamid); + $clone_user = BoincUser::lookup_id($team->userid); if (!$clone_user) { error_page("User $userid not found"); } @@ -83,7 +83,7 @@ $new_email_addr = strtolower(post_str("new_email_addr")); if (!is_valid_email_addr($new_email_addr)) { show_error(tra("Invalid email address: you must enter a valid address of the form name@domain")); } -$user = lookup_user_email_addr($new_email_addr); +$user = BoincUser::lookup_email_addr($new_email_addr); if ($user) { show_error(tra("There's already an account with that email address.")); } diff --git a/html/user/create_account_form.php b/html/user/create_account_form.php index 355b97769d..c4d0b8cf67 100644 --- a/html/user/create_account_form.php +++ b/html/user/create_account_form.php @@ -1,7 +1,7 @@ . -require_once('../inc/db.inc'); +require_once('../inc/boinc_db.inc'); require_once('../inc/util.inc'); require_once('../inc/countries.inc'); require_once('../inc/translation.inc'); @@ -53,8 +53,8 @@ echo " $teamid = get_int("teamid", true); if ($teamid) { - $team = lookup_team($teamid); - $user = lookup_user_id($team->userid); + $team = BoincTeam::lookup_id($teamid); + $user = BoincUser::lookup_id($team->userid); if (!$user) { echo "No such user"; } else { diff --git a/html/user/create_team.php b/html/user/create_team.php index 86b35bf3ff..99856f3f2a 100644 --- a/html/user/create_team.php +++ b/html/user/create_team.php @@ -28,7 +28,7 @@ $retval = db_init_xml(); if ($retval) xml_error($retval); $auth = get_str("account_key"); -$user = lookup_user_auth($auth); +$user = BoincUser::lookup_auth($auth); if (!$user) { xml_error(ERR_DB_NOT_FOUND); } diff --git a/html/user/edit_email_action.php b/html/user/edit_email_action.php index 784951bb93..26304ba2dd 100644 --- a/html/user/edit_email_action.php +++ b/html/user/edit_email_action.php @@ -1,7 +1,7 @@ email_addr) { echo tra("New email address is same as existing address. Nothing is changed."); } else { - $existing = lookup_user_email_addr($email_addr); + $existing = BoincUser::lookup_email_addr($email_addr); if ($existing) { echo tra("There's already an account with that email address"); } else { diff --git a/html/user/edit_forum_preferences_action.php b/html/user/edit_forum_preferences_action.php index c8f7bbf58f..7b5647b0f8 100644 --- a/html/user/edit_forum_preferences_action.php +++ b/html/user/edit_forum_preferences_action.php @@ -21,7 +21,7 @@ require_once("../inc/forum.inc"); require_once("../inc/image.inc"); // Avatar scaling if (post_str("account_key", true) != null) { - $user = lookup_user_auth(post_str("account_key")); + $user = BoincUser::lookup_auth(post_str("account_key")); $rpc = true; } else { $user = get_logged_in_user(); diff --git a/html/user/edit_passwd_action.php b/html/user/edit_passwd_action.php index 51ec7646d3..79a24a411e 100644 --- a/html/user/edit_passwd_action.php +++ b/html/user/edit_passwd_action.php @@ -45,12 +45,12 @@ if (strlen($passwd)<$min_passwd_length) { error_page(tra("New password is too short: minimum password length is %1 characters.", $min_passwd_length)); } if ($auth) { - $user = lookup_user_auth($auth); + $user = BoincUser::lookup_auth($auth); if (!$user) { error_page(tra("Invalid account key")); } } else { - $user = lookup_user_email_addr($email_addr); + $user = BoincUser::lookup_email_addr($email_addr); if (!$user) { error_page(tra("No account with that email address was found")); } diff --git a/html/user/forum_get_data.php b/html/user/forum_get_data.php index c7025ec784..36e9b7248e 100644 --- a/html/user/forum_get_data.php +++ b/html/user/forum_get_data.php @@ -35,7 +35,7 @@ if ($method != "user_posts" && $method != "user_threads") { } $userid = get_int("userid", true); -$user = lookup_user_id($userid); +$user = BoincUser::lookup_id($userid); if (!$user) { xml_error(ERR_DB_NOT_FOUND); } diff --git a/html/user/forum_user_posts.php b/html/user/forum_user_posts.php index 825052fec0..eb8e9896da 100644 --- a/html/user/forum_user_posts.php +++ b/html/user/forum_user_posts.php @@ -30,7 +30,7 @@ $offset = get_int("offset", true); if (!$offset) $offset=0; $items_per_page = 20; -$user = lookup_user_id($userid); +$user = BoincUser::lookup_id($userid); $logged_in_user = get_logged_in_user(false); // Policy for what to show: diff --git a/html/user/host_update_credit.php b/html/user/host_update_credit.php index 58d799aa2f..4edb2a6245 100644 --- a/html/user/host_update_credit.php +++ b/html/user/host_update_credit.php @@ -16,20 +16,19 @@ // You should have received a copy of the GNU Lesser General Public License // along with BOINC. If not, see . -require_once("../inc/db.inc"); +require_once("../inc/boinc_db.inc"); require_once("../inc/util.inc"); require_once("../inc/host.inc"); check_get_args(array("hostid")); -db_init(); $user = get_logged_in_user(); page_head(tra("Updating computer credit")); $hostid = get_int("hostid"); -$host = lookup_host($hostid); +$host = BoincHost::lookup_id($hostid); if (!$host || $host->userid != $user->id) { error_page(We have no record of that computer"); } diff --git a/html/user/hosts_user.php b/html/user/hosts_user.php index c4c4f70c0c..ecb36e76ce 100644 --- a/html/user/hosts_user.php +++ b/html/user/hosts_user.php @@ -1,7 +1,7 @@ id == $userid) { $userid = 0; } if ($userid) { - $user = lookup_user_id($userid); + $user = BoincUser::lookup_id($userid); if (!$user) { error_page("No such user"); } diff --git a/html/user/login_action.php b/html/user/login_action.php index ee82dd6a2b..b1d0709291 100644 --- a/html/user/login_action.php +++ b/html/user/login_action.php @@ -33,7 +33,7 @@ $email_addr = strtolower(sanitize_tags(post_str("email_addr", true))); $passwd = post_str("passwd", true); if ($email_addr && $passwd) { - $user = lookup_user_email_addr($email_addr); + $user = BoincUser::lookup_email_addr($email_addr); if (!$user) { page_head("No such account"); echo "No account with email address $email_addr exists. @@ -111,7 +111,7 @@ if (substr($user->authenticator, 0, 1) == 'x'){ //User has been bad so we are going to take away ability to post for awhile. error_page("This account has been administratively disabled."); } -$user = lookup_user_auth($authenticator); +$user = BoincUser::lookup_auth($authenticator); if (!$user) { page_head("Login failed"); echo "There is no account with that authenticator. diff --git a/html/user/mail_passwd.php b/html/user/mail_passwd.php index b57b273c14..8ddbf8a47a 100644 --- a/html/user/mail_passwd.php +++ b/html/user/mail_passwd.php @@ -1,7 +1,7 @@ userid); + // $team = BoincTeam::lookup_id($teamid); + // $clone_user = BoincUser::lookup_id($team->userid); // if (!$clone_user) { // echo "User $userid not found"; // exit(); @@ -110,7 +110,7 @@ try { name@domain" ); } - $user = lookup_user_email_addr($new_email_addr); + $user = BoincUser::lookup_email_addr($new_email_addr); if (!$user) { $passwd_hash = random_string(); diff --git a/html/user/opt_out.php b/html/user/opt_out.php index 94a83988ff..a60f2e464e 100644 --- a/html/user/opt_out.php +++ b/html/user/opt_out.php @@ -1,7 +1,7 @@ update("opened=1"); } echo " $checkbox $msg->subject \n"; - echo "".user_links(get_user_from_id($msg->senderid)); + echo "".user_links(BoincUser::lookup_id($msg->senderid)); show_block_link($msg->senderid); echo "
".time_str($msg->date)."\n"; echo "".output_transform($msg->content, $options)."

"; @@ -200,12 +200,12 @@ function do_send($logged_in_user) { $user = explode(" ", $username); if (is_numeric($user[0])) { // user ID is gived $userid = $user[0]; - $user = lookup_user_id($userid); + $user = BoincUser::lookup_id($userid); if ($user == null) { pm_form($replyto, $userid, tra("Could not find user with id %1", $userid)); } } else { - $user = lookup_user_name($username); + $user = BoincUser::lookup_name($username); if ($user == null) { pm_form($replyto, $userid, tra("Could not find user with username %1", $username)); } elseif ($user == -1) { // Non-unique username diff --git a/html/user/profile_menu.php b/html/user/profile_menu.php index 227caba30a..48c930ad4d 100644 --- a/html/user/profile_menu.php +++ b/html/user/profile_menu.php @@ -46,7 +46,7 @@ row1($UOTD_heading); echo ""; $profile = get_current_uotd(); if ($profile) { - $user = lookup_user_id($profile->userid); + $user = BoincUser::lookup_id($profile->userid); echo uotd_thumbnail($profile, $user); echo user_links($user)."
"; $resp = output_transform($profile->response1); diff --git a/html/user/profile_search_action.php b/html/user/profile_search_action.php index 92d5056e71..76c446da8b 100644 --- a/html/user/profile_search_action.php +++ b/html/user/profile_search_action.php @@ -1,7 +1,7 @@ userid); + $user = BoincUser::lookup_id($profile->userid); echo "".user_links($user)."".date_str($user->create_time)."$user->country".(int)$user->total_credit."".(int)$user->expavg_credit."\n"; } diff --git a/html/user/sandbox.php b/html/user/sandbox.php index de7803b108..ab77d98293 100644 --- a/html/user/sandbox.php +++ b/html/user/sandbox.php @@ -42,7 +42,7 @@ function list_files($user, $err_msg) { $dir = sandbox_dir($user); $d = opendir($dir); if (!$d) error_page("Can't open sandbox directory"); - page_head("file sandbox for $user->name"); + page_head("File sandbox for $user->name"); echo "

diff --git a/html/user/show_user.php b/html/user/show_user.php index 74fbf167d2..494f425f30 100644 --- a/html/user/show_user.php +++ b/html/user/show_user.php @@ -45,10 +45,10 @@ if ($format=="xml"){ $retval = db_init_xml(); if ($retval) xml_error($retval); if ($auth){ - $user = lookup_user_auth($auth); + $user = BoincUser::lookup_auth($auth); $show_hosts = true; } else { - $user = lookup_user_id($id); + $user = BoincUser::lookup_id($id); $show_hosts = false; } if (!$user) xml_error(ERR_DB_NOT_FOUND); @@ -70,7 +70,7 @@ if ($format=="xml"){ $community_links = $data->clo; } else { // No data was found, generate new data for the cache and store it - $user = lookup_user_id($id); + $user = BoincUser::lookup_id($id); if (!$user) { error_page("No such user $id"); } diff --git a/html/user/submit.php b/html/user/submit.php index 04451fe4ce..7db0b370b3 100644 --- a/html/user/submit.php +++ b/html/user/submit.php @@ -409,21 +409,19 @@ function handle_query_job($user) { table_header("Logical name
(click to view)", "Size (bytes)", "MD5" ); - $fanout = parse_config(get_config(), ""); - $download_dir = parse_config(get_config(), ""); foreach ($x->workunit->file_ref as $fr) { $pname = (string)$fr->file_name; $lname = (string)$fr->open_name; - $dir = filename_hash($pname, $fanout); - $path = $download_dir."/$dir/$pname"; - $md5 = md5_file($path); - $s = stat($path); - $size = $s['size']; - table_row( - "$lname", - $size, - $md5 - ); + foreach ($x->file_info as $fi) { + if ((string)$fi->name == $pname) { + table_row( + "url>$lname", + $fi->nbytes, + $fi->md5_cksum + ); + break; + } + } } end_table(); @@ -435,6 +433,7 @@ function handle_query_job($user) { ); $results = BoincResult::enum("workunitid=$wuid"); $upload_dir = parse_config(get_config(), ""); + $fanout = parse_config(get_config(), ""); foreach($results as $result) { echo " id>$result->id · $result->name diff --git a/html/user/team_email_list.php b/html/user/team_email_list.php index 9e5fe1e57e..687421d8ec 100644 --- a/html/user/team_email_list.php +++ b/html/user/team_email_list.php @@ -38,7 +38,7 @@ if ($xml) { xml_error(ERR_DB_NOT_FOUND); } $account_key = get_str('account_key', true); - $user = lookup_user_auth($account_key); + $user = Boinc_user::lookup_auth($account_key); $show_email = ($user && is_team_founder($user, $team)); echo "\n"; $users = BoincUser::enum_fields("id, email_addr, send_email, name, total_credit, expavg_credit, expavg_time, has_profile, donated, country, cross_project_id, create_time, url", "teamid=$team->id"); diff --git a/html/user/team_founder_transfer_action.php b/html/user/team_founder_transfer_action.php index 7924f28d63..4f80c86562 100644 --- a/html/user/team_founder_transfer_action.php +++ b/html/user/team_founder_transfer_action.php @@ -39,7 +39,7 @@ if (!$user->teamid) { } function send_founder_transfer_email($team, $user) { - $founder = lookup_user_id($team->userid); + $founder = BoincUser::lookup_id($team->userid); // send founder a private message for good measure diff --git a/html/user/uotd.php b/html/user/uotd.php index 73dc24429c..c793194f58 100644 --- a/html/user/uotd.php +++ b/html/user/uotd.php @@ -1,7 +1,7 @@ userid); + $user = BoincUser::lookup_id($profile->userid); page_head(tra("User of the Day for %1: %2", $d, $user->name)); start_table(); show_profile($user, get_logged_in_user(false)); diff --git a/html/user/validate_email_addr.php b/html/user/validate_email_addr.php index 8195ac21b4..0b80dc98d7 100644 --- a/html/user/validate_email_addr.php +++ b/html/user/validate_email_addr.php @@ -1,7 +1,7 @@ +#endif + +#if !defined(__CYGWIN32__) #include #endif + + #ifdef __cplusplus #include #include diff --git a/lib/diagnostics_win.cpp b/lib/diagnostics_win.cpp index e0337b3f46..ebcf1cee29 100644 --- a/lib/diagnostics_win.cpp +++ b/lib/diagnostics_win.cpp @@ -517,13 +517,13 @@ int diagnostics_set_thread_crash_message(char* message) { // char* diagnostics_format_thread_state(int thread_state) { switch(thread_state) { - case ThreadStateInitialized: return "Initialized"; - case ThreadStateReady: return "Ready"; - case ThreadStateRunning: return "Running"; - case ThreadStateStandby: return "Standby"; - case ThreadStateTerminated: return "Terminated"; - case ThreadStateWaiting: return "Waiting"; - case ThreadStateTransition: return "Transition"; + case StateInitialized: return "Initialized"; + case StateReady: return "Ready"; + case StateRunning: return "Running"; + case StateStandby: return "Standby"; + case StateTerminated: return "Terminated"; + case StateWait: return "Waiting"; + case StateTransition: return "Transition"; default: return "Unknown"; } return ""; @@ -1337,7 +1337,7 @@ int diagnostics_dump_process_information() { int diagnostics_dump_thread_information(PBOINC_THREADLISTENTRY pThreadEntry) { std::string strStatusExtra; - if (pThreadEntry->crash_state == ThreadStateWaiting) { + if (pThreadEntry->crash_state == StateWait) { strStatusExtra += "Wait Reason: "; strStatusExtra += diagnostics_format_thread_wait_reason(pThreadEntry->crash_wait_reason); strStatusExtra += ", "; diff --git a/lib/diagnostics_win.h b/lib/diagnostics_win.h index 666d080962..cf00c5e75a 100644 --- a/lib/diagnostics_win.h +++ b/lib/diagnostics_win.h @@ -20,17 +20,23 @@ #include "boinc_win.h" + #define STATUS_INFO_LENGTH_MISMATCH ((NTSTATUS)0xC0000004L) typedef LONG NTSTATUS; typedef LONG KPRIORITY; +//MinGW-W64 defines this struct in its own header +#ifndef __MINGW32__ typedef struct _CLIENT_ID { DWORD UniqueProcess; DWORD UniqueThread; } CLIENT_ID; +#endif +//MinGW-W64 defines this struct in its own header +#ifndef __MINGW32__ typedef struct _VM_COUNTERS { #ifdef _WIN64 // the following was inferred by painful reverse engineering @@ -59,7 +65,10 @@ typedef struct _VM_COUNTERS { SIZE_T PeakPagefileUsage; #endif } VM_COUNTERS; +#endif +//MinGW-W64 defines this struct in its own header +#ifndef __MINGW32__ typedef struct _SYSTEM_THREADS { LARGE_INTEGER KernelTime; LARGE_INTEGER UserTime; @@ -73,6 +82,7 @@ typedef struct _SYSTEM_THREADS { LONG State; LONG WaitReason; } SYSTEM_THREADS, * PSYSTEM_THREADS; +#endif typedef struct _SYSTEM_PROCESSES { ULONG NextEntryDelta; @@ -100,15 +110,18 @@ typedef struct _SYSTEM_PROCESSES { SYSTEM_THREADS Threads[1]; } SYSTEM_PROCESSES, * PSYSTEM_PROCESSES; +//MinGW-W64 defines this struct in its own header +#ifndef __MINGW32__ typedef enum _THREAD_STATE { - ThreadStateInitialized, - ThreadStateReady, - ThreadStateRunning, - ThreadStateStandby, - ThreadStateTerminated, - ThreadStateWaiting, - ThreadStateTransition + StateInitialized, + StateReady, + StateRunning, + StateStandby, + StateTerminated, + StateWait, + StateTransition } THREAD_STATE, *PTHREAD_STATE; +#endif typedef enum _THREAD_WAIT_REASON { ThreadWaitReasonExecutive, diff --git a/locale/ms/BOINC-Android.po b/locale/ms/BOINC-Android.po new file mode 100644 index 0000000000..4df3236237 --- /dev/null +++ b/locale/ms/BOINC-Android.po @@ -0,0 +1,1114 @@ +# Translations template for PROJECT. +# Copyright (C) 2013 ORGANIZATION +# This file is distributed under the same license as the PROJECT project. +# FIRST AUTHOR , 2013. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2013-10-18 00:00-0700\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 1.0dev\n" + +#. app global +msgctxt "app_name" +msgid "BOINC" +msgstr "" + +#. generic. used by multiple Activities/tabs +msgctxt "generic_loading" +msgid "Loading! Please wait…" +msgstr "" + +#. attach project +#. project list +msgctxt "attachproject_list_header" +msgid "Choose a project:" +msgstr "" + +msgctxt "attachproject_list_manual_button" +msgid "Add project by URL" +msgstr "" + +msgctxt "attachproject_list_manual_dialog_title" +msgid "Enter project URL:" +msgstr "" + +msgctxt "attachproject_list_manual_dialog_button" +msgid "Add project" +msgstr "" + +msgctxt "attachproject_list_manual_no_url" +msgid "Please enter project URL" +msgstr "" + +msgctxt "attachproject_list_acctmgr_button" +msgid "Add account manager" +msgstr "" + +msgctxt "attachproject_list_no_internet" +msgid "No Internet connection" +msgstr "" + +#. project login +msgctxt "attachproject_login_loading" +msgid "Contacting project server…" +msgstr "" + +msgctxt "attachproject_login_image_description" +msgid "Project logo." +msgstr "" + +msgctxt "attachproject_login_header_general_area" +msgid "General area:" +msgstr "" + +msgctxt "attachproject_login_header_specific_area" +msgid "Specific area:" +msgstr "" + +msgctxt "attachproject_login_header_description" +msgid "Description:" +msgstr "" + +msgctxt "attachproject_login_header_home" +msgid "Home:" +msgstr "" + +msgctxt "attachproject_login_header_url" +msgid "Website:" +msgstr "" + +msgctxt "attachproject_login_header_platform" +msgid "Android:" +msgstr "" + +msgctxt "attachproject_login_platform_supported" +msgid "This project supports Android devices" +msgstr "" + +msgctxt "attachproject_login_platform_not_supported" +msgid "This project does not support Android devices" +msgstr "" + +msgctxt "attachproject_login_category_terms_of_use" +msgid "Terms of use for" +msgstr "" + +msgctxt "attachproject_login_accept_terms_of_use" +msgid "" +"By creating an account with this project, you accept the terms of use as " +"shown above." +msgstr "" + +msgctxt "attachproject_login_category_login" +msgid "Sign in with existing account" +msgstr "" + +msgctxt "attachproject_login_header_id_email" +msgid "eMail:" +msgstr "" + +msgctxt "attachproject_login_header_id_name" +msgid "Name:" +msgstr "" + +msgctxt "attachproject_login_header_pwd" +msgid "Password:" +msgstr "" + +msgctxt "attachproject_login_category_creation" +msgid "New to" +msgstr "" + +msgctxt "attachproject_login_header_creation_enabled" +msgid "Register an account to participate:" +msgstr "" + +msgctxt "attachproject_login_header_creation_client_disabled" +msgid "Visit project website to create an account:" +msgstr "" + +msgctxt "attachproject_login_header_creation_disabled" +msgid "Project does currently now allow creation of new accounts!" +msgstr "" + +msgctxt "attachproject_login_button_registration" +msgid "Register" +msgstr "" + +msgctxt "attachproject_login_button_login" +msgid "Sign in" +msgstr "" + +msgctxt "attachproject_login_button_forgotpw" +msgid "Forgot Password" +msgstr "" + +msgctxt "attachproject_login_error_toast" +msgid "Contacting project failed!" +msgstr "" + +msgctxt "attachproject_login_attached" +msgid "Attached" +msgstr "" + +#. project registration +msgctxt "attachproject_registration_header" +msgid "Account registration for" +msgstr "" + +msgctxt "attachproject_registration_header_url" +msgid "Project:" +msgstr "" + +msgctxt "attachproject_registration_header_email" +msgid "eMail:" +msgstr "" + +msgctxt "attachproject_registration_header_username" +msgid "Name:" +msgstr "" + +msgctxt "attachproject_registration_header_teamname" +msgid "Team:" +msgstr "" + +msgctxt "attachproject_registration_header_pwd" +msgid "Password:" +msgstr "" + +msgctxt "attachproject_registration_header_pwd_confirm" +msgid "… Retype:" +msgstr "" + +msgctxt "attachproject_registration_button" +msgid "Create" +msgstr "" + +#. account manager +msgctxt "attachproject_acctmgr_header" +msgid "Add account manager" +msgstr "" + +msgctxt "attachproject_acctmgr_header_url" +msgid "URL" +msgstr "" + +msgctxt "attachproject_acctmgr_header_name" +msgid "User:" +msgstr "" + +msgctxt "attachproject_acctmgr_header_pwd" +msgid "Password:" +msgstr "" + +msgctxt "attachproject_acctmgr_header_pwd_confirm" +msgid "… Retype:" +msgstr "" + +msgctxt "attachproject_acctmgr_button" +msgid "Add" +msgstr "" + +#. error strings +msgctxt "attachproject_error_wrong_name" +msgid "User not found" +msgstr "" + +msgctxt "attachproject_error_short_pwd" +msgid "Password too short" +msgstr "" + +msgctxt "attachproject_error_no_internet" +msgid "Connection failure" +msgstr "" + +msgctxt "attachproject_error_pwd_no_match" +msgid "Passwords do not match" +msgstr "" + +msgctxt "attachproject_error_no_url" +msgid "Please enter URL" +msgstr "" + +msgctxt "attachproject_error_no_email" +msgid "Please enter eMail address" +msgstr "" + +msgctxt "attachproject_error_no_pwd" +msgid "Please enter a password" +msgstr "" + +msgctxt "attachproject_error_no_name" +msgid "Please enter user name" +msgstr "" + +msgctxt "attachproject_error_unknown" +msgid "failed" +msgstr "" + +msgctxt "attachproject_error_bad_username" +msgid "User name refused" +msgstr "" + +msgctxt "attachproject_error_email_in_use" +msgid "eMail is already in use" +msgstr "" + +msgctxt "attachproject_error_project_down" +msgid "Project is offline" +msgstr "" + +msgctxt "attachproject_error_email_bad_syntax" +msgid "eMail refused" +msgstr "" + +msgctxt "attachproject_error_bad_pwd" +msgid "Password refused" +msgstr "" + +msgctxt "attachproject_error_creation_disabled" +msgid "Account creation is disabled on this project" +msgstr "" + +msgctxt "attachproject_error_invalid_url" +msgid "Invalid URL" +msgstr "" + +#. working activity +msgctxt "attachproject_working_back_button" +msgid "Back" +msgstr "" + +msgctxt "attachproject_working_finish_button" +msgid "Finish" +msgstr "" + +msgctxt "attachproject_working_check_desc" +msgid "Successful" +msgstr "" + +msgctxt "attachproject_working_failed_desc" +msgid "Failed" +msgstr "" + +msgctxt "attachproject_working_ongoing" +msgid "…" +msgstr "" + +msgctxt "attachproject_working_finished" +msgid "." +msgstr "" + +msgctxt "attachproject_working_description" +msgid ":" +msgstr "" + +msgctxt "attachproject_working_connect" +msgid "Connect" +msgstr "" + +msgctxt "attachproject_working_verify" +msgid "Verify account" +msgstr "" + +msgctxt "attachproject_working_register" +msgid "Register account" +msgstr "" + +msgctxt "attachproject_working_login" +msgid "Log in" +msgstr "" + +msgctxt "attachproject_working_acctmgr" +msgid "Add account manager" +msgstr "" + +msgctxt "attachproject_working_acctmgr_sync" +msgid "Synchronize" +msgstr "" + +#. main activity +msgctxt "main_noproject_warning" +msgid "Tab here to choose a project." +msgstr "" + +msgctxt "main_error" +msgid "Whooops" +msgstr "" + +msgctxt "main_error_long" +msgid "" +"…this should not happen!\n" +"Click on the icon to try again." +msgstr "" + +msgctxt "main_title_icon_desc" +msgid "BOINC icon" +msgstr "" + +#. tab names +msgctxt "tab_status" +msgid "Status" +msgstr "" + +msgctxt "tab_projects" +msgid "Projects" +msgstr "" + +msgctxt "tab_tasks" +msgid "Tasks" +msgstr "" + +msgctxt "tab_transfers" +msgid "Transfers" +msgstr "" + +msgctxt "tab_preferences" +msgid "Preferences" +msgstr "" + +msgctxt "tab_notices" +msgid "Notices" +msgstr "" + +msgctxt "tab_desc" +msgid "Navigation" +msgstr "" + +#. status strings +msgctxt "status_running" +msgid "Computing" +msgstr "" + +msgctxt "status_running_long" +msgid "Thank you for participating." +msgstr "" + +msgctxt "status_paused" +msgid "Suspended" +msgstr "" + +msgctxt "status_idle" +msgid "Nothing to do" +msgstr "" + +msgctxt "status_idle_long" +msgid "Waiting for tasks…" +msgstr "" + +msgctxt "status_computing_disabled" +msgid "Suspended" +msgstr "" + +msgctxt "status_computing_disabled_long" +msgid "Press play to resume network and computation." +msgstr "" + +msgctxt "status_launching" +msgid "Starting…" +msgstr "" + +msgctxt "status_noproject" +msgid "Choose a project to participate in." +msgstr "" + +msgctxt "status_closing" +msgid "Closing…" +msgstr "" + +msgctxt "status_benchmarking" +msgid "Benchmarking…" +msgstr "" + +msgctxt "status_image_description" +msgid "project image" +msgstr "" + +#. preferences tab strings +msgctxt "prefs_loading" +msgid "Reading preferences…" +msgstr "" + +msgctxt "prefs_submit_button" +msgid "Save" +msgstr "" + +msgctxt "prefs_dialog_title" +msgid "Enter new value:" +msgstr "" + +msgctxt "prefs_dialog_title_selection" +msgid "Select:" +msgstr "" + +msgctxt "prefs_category_general" +msgid "General" +msgstr "" + +msgctxt "prefs_category_network" +msgid "Network" +msgstr "" + +msgctxt "prefs_category_power" +msgid "Power" +msgstr "" + +msgctxt "prefs_category_cpu" +msgid "CPU" +msgstr "" + +msgctxt "prefs_category_storage" +msgid "Storage" +msgstr "" + +msgctxt "prefs_category_memory" +msgid "Memory" +msgstr "" + +msgctxt "prefs_category_debug" +msgid "Debug" +msgstr "" + +msgctxt "prefs_show_advanced_header" +msgid "Show advanced preferences and controls…" +msgstr "" + +msgctxt "prefs_run_on_battery_header" +msgid "Compute on Battery" +msgstr "" + +msgctxt "battery_charge_min_pct_header" +msgid "Min. battery level" +msgstr "" + +msgctxt "battery_charge_min_pct_description" +msgid "BOINC suspends computation below defined battery charge level." +msgstr "" + +msgctxt "battery_temperature_max_header" +msgid "Max. battery temperature" +msgstr "" + +msgctxt "battery_temperature_max_description" +msgid "" +"BOINC suspends computation above defined battery temperature. It is not " +"recommended to change this value." +msgstr "" + +msgctxt "prefs_disk_max_pct_header" +msgid "Max. used storage space" +msgstr "" + +msgctxt "prefs_disk_max_pct_description" +msgid "How many percent of your device's storage space is BOINC allowed to use?" +msgstr "" + +msgctxt "prefs_disk_min_free_gb_header" +msgid "Min. spare storage" +msgstr "" + +msgctxt "prefs_disk_min_free_gb_description" +msgid "How much of your device's storage space shall stay free?" +msgstr "" + +msgctxt "prefs_network_daily_xfer_limit_mb_header" +msgid "Daily transfer limit" +msgstr "" + +msgctxt "prefs_network_daily_xfer_limit_mb_description" +msgid "Limits the daily data traffic caused by BOINC." +msgstr "" + +msgctxt "prefs_network_wifi_only_header" +msgid "Transfer tasks on WiFi only" +msgstr "" + +msgctxt "prefs_autostart_header" +msgid "Autostart" +msgstr "" + +msgctxt "prefs_show_notification_header" +msgid "Show notification when suspended" +msgstr "" + +msgctxt "prefs_cpu_number_cpus_header" +msgid "Used CPU cores" +msgstr "" + +msgctxt "prefs_cpu_number_cpus_description" +msgid "Limits the number of CPU cores BOINC uses for computation." +msgstr "" + +msgctxt "prefs_cpu_other_load_suspension_header" +msgid "Pause at CPU usage above" +msgstr "" + +msgctxt "prefs_cpu_other_load_suspension_description" +msgid "Determines when BOINC pauses computation due to other app's CPU usage." +msgstr "" + +msgctxt "prefs_cpu_time_max_header" +msgid "CPU limit" +msgstr "" + +msgctxt "prefs_cpu_time_max_description" +msgid "Limits the CPU time BOINC uses for computation." +msgstr "" + +msgctxt "prefs_memory_max_idle_header" +msgid "RAM limit" +msgstr "" + +msgctxt "prefs_memory_max_idle_description" +msgid "Limits the amount of RAM tasks are allowed to occupy." +msgstr "" + +msgctxt "prefs_client_log_flags_header" +msgid "BOINC Client log flags" +msgstr "" + +msgctxt "prefs_gui_log_level_header" +msgid "GUI log level" +msgstr "" + +msgctxt "prefs_gui_log_level_description" +msgid "Specifies verbosity of GUI log messages." +msgstr "" + +msgctxt "prefs_unit_mb" +msgid "MB" +msgstr "" + +msgctxt "prefs_unit_gb" +msgid "GB" +msgstr "" + +#, c-format +msgctxt "prefs_unit_pct" +msgid "%" +msgstr "" + +msgctxt "prefs_unit_celcius" +msgid "°C" +msgstr "" + +#. projects tab strings +msgctxt "projects_loading" +msgid "Reading projects…" +msgstr "" + +msgctxt "projects_add" +msgid "Add project" +msgstr "" + +msgctxt "projects_icon" +msgid "Project icon" +msgstr "" + +msgctxt "projects_credits_header" +msgid "Credit:" +msgstr "" + +msgctxt "projects_credits_host_header" +msgid "(on this device)" +msgstr "" + +msgctxt "projects_credits_user_header" +msgid "(total)" +msgstr "" + +#. project status strings +msgctxt "projects_status_suspendedviagui" +msgid "Suspended by user" +msgstr "" + +msgctxt "projects_status_dontrequestmorework" +msgid "Won't get new tasks" +msgstr "" + +msgctxt "projects_status_ended" +msgid "Project ended - OK to remove" +msgstr "" + +msgctxt "projects_status_detachwhendone" +msgid "Will remove when tasks done" +msgstr "" + +msgctxt "projects_status_schedrpcpending" +msgid "Scheduler request pending" +msgstr "" + +msgctxt "projects_status_schedrpcinprogress" +msgid "Scheduler request in progress" +msgstr "" + +msgctxt "projects_status_trickleuppending" +msgid "Trickle up message pending" +msgstr "" + +msgctxt "projects_status_backoff" +msgid "Communication scheduled in:" +msgstr "" + +#. project controls +msgctxt "projects_control_dialog_title" +msgid "Project commands:" +msgstr "" + +msgctxt "projects_control_visit_website" +msgid "Visit website" +msgstr "" + +msgctxt "projects_control_update" +msgid "Update" +msgstr "" + +msgctxt "projects_control_remove" +msgid "Remove" +msgstr "" + +msgctxt "projects_control_suspend" +msgid "Suspend" +msgstr "" + +msgctxt "projects_control_resume" +msgid "Resume" +msgstr "" + +msgctxt "projects_control_nonewtasks" +msgid "No new tasks" +msgstr "" + +msgctxt "projects_control_allownewtasks" +msgid "Allow new tasks" +msgstr "" + +msgctxt "projects_control_reset" +msgid "Reset" +msgstr "" + +msgctxt "projects_control_dialog_title_acctmgr" +msgid "Account manager commands:" +msgstr "" + +msgctxt "projects_control_sync_acctmgr" +msgid "Synchronize" +msgstr "" + +msgctxt "projects_control_remove_acctmgr" +msgid "Disable" +msgstr "" + +#. project confirm dialog +msgctxt "projects_confirm_detach_title" +msgid "Remove project?" +msgstr "" + +msgctxt "projects_confirm_detach_message" +msgid "Are you sure you want to remove" +msgstr "" + +msgctxt "projects_confirm_detach_message2" +msgid "from BOINC?" +msgstr "" + +msgctxt "projects_confirm_detach_confirm" +msgid "Remove" +msgstr "" + +msgctxt "projects_confirm_reset_title" +msgid "Reset project" +msgstr "" + +msgctxt "projects_confirm_reset_message" +msgid "Are you sure you want to reset" +msgstr "" + +msgctxt "projects_confirm_reset_confirm" +msgid "Reset" +msgstr "" + +msgctxt "projects_confirm_remove_acctmgr_title" +msgid "Disable account manager" +msgstr "" + +msgctxt "projects_confirm_remove_acctmgr_message" +msgid "Are you sure you want to stop using" +msgstr "" + +msgctxt "projects_confirm_remove_acctmgr_confirm" +msgid "Disable" +msgstr "" + +#. tasks tab strings +msgctxt "tasks_header_name" +msgid "Task Name:" +msgstr "" + +msgctxt "tasks_header_elapsed_time" +msgid "Elapsed time:" +msgstr "" + +msgctxt "tasks_header_project_paused" +msgid "(suspended)" +msgstr "" + +msgctxt "tasks_header_deadline" +msgid "Deadline:" +msgstr "" + +msgctxt "tasks_result_new" +msgid "new" +msgstr "" + +msgctxt "tasks_result_files_downloading" +msgid "waiting for download" +msgstr "" + +msgctxt "tasks_result_files_downloaded" +msgid "download complete" +msgstr "" + +msgctxt "tasks_result_compute_error" +msgid "computation error" +msgstr "" + +msgctxt "tasks_result_files_uploading" +msgid "uploading" +msgstr "" + +msgctxt "tasks_result_files_uploaded" +msgid "upload complete" +msgstr "" + +msgctxt "tasks_result_aborted" +msgid "aborted" +msgstr "" + +msgctxt "tasks_result_upload_failed" +msgid "upload failed" +msgstr "" + +msgctxt "tasks_active_uninitialized" +msgid "ready" +msgstr "" + +msgctxt "tasks_active_executing" +msgid "running" +msgstr "" + +msgctxt "tasks_active_suspended" +msgid "suspended" +msgstr "" + +msgctxt "tasks_active_abort_pending" +msgid "suspending" +msgstr "" + +msgctxt "tasks_active_quit_pending" +msgid "suspending" +msgstr "" + +msgctxt "tasks_custom_suspended_via_gui" +msgid "suspended" +msgstr "" + +msgctxt "tasks_custom_project_suspended_via_gui" +msgid "project suspended" +msgstr "" + +msgctxt "tasks_custom_ready_to_report" +msgid "ready to report" +msgstr "" + +#. confirmation dialog +msgctxt "confirm_abort_task_title" +msgid "Abort task?" +msgstr "" + +msgctxt "confirm_abort_task_message" +msgid "Abort task:" +msgstr "" + +msgctxt "confirm_abort_task_confirm" +msgid "Abort" +msgstr "" + +msgctxt "confirm_cancel" +msgid "Cancel" +msgstr "" + +msgctxt "confirm_image_desc" +msgid "Confirmation dialog" +msgstr "" + +#. transfers tab strings +msgctxt "trans_loading" +msgid "Reading transfers…" +msgstr "" + +msgctxt "trans_upload" +msgid "Upload" +msgstr "" + +msgctxt "trans_download" +msgid "Download" +msgstr "" + +msgctxt "trans_retryin" +msgid "retry in" +msgstr "" + +msgctxt "trans_failed" +msgid "failed" +msgstr "" + +msgctxt "trans_suspended" +msgid "suspended" +msgstr "" + +msgctxt "trans_active" +msgid "active" +msgstr "" + +msgctxt "trans_pending" +msgid "pending" +msgstr "" + +msgctxt "trans_projectbackoff" +msgid "project backoff" +msgstr "" + +msgctxt "trans_header_name" +msgid "File:" +msgstr "" + +msgctxt "trans_control_retry" +msgid "Retry transfers" +msgstr "" + +msgctxt "confirm_abort_trans_title" +msgid "Abort transfer?" +msgstr "" + +msgctxt "confirm_abort_trans_message" +msgid "Abort File:" +msgstr "" + +msgctxt "confirm_abort_trans_confirm" +msgid "Abort" +msgstr "" + +#. notices tab strings +msgctxt "notices_loading" +msgid "Reading notices…" +msgstr "" + +#. eventlog tab strings +msgctxt "eventlog_loading" +msgid "Loading log messages…" +msgstr "" + +msgctxt "eventlog_client_header" +msgid "Client Messages" +msgstr "" + +msgctxt "eventlog_gui_header" +msgid "GUI Messages" +msgstr "" + +msgctxt "eventlog_copy_toast" +msgid "Log copied to clipboard." +msgstr "" + +msgctxt "eventlog_email_subject" +msgid "Event Log for BOINC on Android:" +msgstr "" + +#. suspend reasons +msgctxt "suspend_unknown" +msgid "Computation suspended." +msgstr "" + +msgctxt "suspend_batteries" +msgid "Connect your device to a charger to continue computing." +msgstr "" + +msgctxt "suspend_useractive" +msgid "User is active." +msgstr "" + +msgctxt "suspend_tod" +msgid "Out of computation time-frame." +msgstr "" + +msgctxt "suspend_bm" +msgid "BOINC is benchmarking your device…" +msgstr "" + +msgctxt "suspend_disksize" +msgid "Out of disk space." +msgstr "" + +msgctxt "suspend_cputhrottle" +msgid "Scheduled CPU throttle." +msgstr "" + +msgctxt "suspend_noinput" +msgid "No recent user activity." +msgstr "" + +msgctxt "suspend_delay" +msgid "Initialization delay." +msgstr "" + +msgctxt "suspend_exclusiveapp" +msgid "An exclusive app is running." +msgstr "" + +msgctxt "suspend_cpu" +msgid "Your device is busy with other apps." +msgstr "" + +msgctxt "suspend_network_quota" +msgid "BOINC reached network transfer limit." +msgstr "" + +msgctxt "suspend_os" +msgid "Stopped by Android." +msgstr "" + +msgctxt "suspend_wifi" +msgid "Not connected to WiFi." +msgstr "" + +msgctxt "suspend_battery_charging" +msgid "Battery needs to charge before resuming computation." +msgstr "" + +msgctxt "suspend_battery_charging_long" +msgid "Computing will resume when battery charge reaches" +msgstr "" + +msgctxt "suspend_battery_charging_current" +msgid "currently" +msgstr "" + +msgctxt "suspend_battery_overheating" +msgid "Waiting for battery to cool down" +msgstr "" + +msgctxt "suspend_user_req" +msgid "Resuming computation…" +msgstr "" + +msgctxt "suspend_network_user_req" +msgid "manually." +msgstr "" + +#. rpc reasons +msgctxt "rpcreason_userreq" +msgid "Requested by user" +msgstr "" + +msgctxt "rpcreason_needwork" +msgid "To fetch work" +msgstr "" + +msgctxt "rpcreason_resultsdue" +msgid "To report completed tasks" +msgstr "" + +msgctxt "rpcreason_trickleup" +msgid "To send trickle-up message" +msgstr "" + +msgctxt "rpcreason_acctmgrreq" +msgid "Requested by account manager" +msgstr "" + +msgctxt "rpcreason_init" +msgid "Project initialization" +msgstr "" + +msgctxt "rpcreason_projectreq" +msgid "Requested by project" +msgstr "" + +msgctxt "rpcreason_unknown" +msgid "Unknown reason" +msgstr "" + +#. menu +msgctxt "menu_refresh" +msgid "Refresh" +msgstr "" + +msgctxt "menu_emailto" +msgid "Send as Email" +msgstr "" + +msgctxt "menu_copy" +msgid "Copy to Clipboard" +msgstr "" + +msgctxt "menu_eventlog" +msgid "Event Log" +msgstr "" + +msgctxt "menu_exit" +msgid "Exit BOINC" +msgstr "" + +msgctxt "menu_run_mode_disable" +msgid "Suspend" +msgstr "" + +msgctxt "menu_run_mode_enable" +msgid "Resume" +msgstr "" + +msgctxt "menu_about" +msgid "About" +msgstr "" + +msgctxt "menu_help" +msgid "Help" +msgstr "" + +#. about dialog +msgctxt "about_button" +msgid "Return" +msgstr "" + +msgctxt "about_title" +msgid "About" +msgstr "" + +msgctxt "about_name" +msgid "BOINC" +msgstr "" + +msgctxt "about_version" +msgid "Version" +msgstr "" + +msgctxt "about_name_long" +msgid "Berkeley Open Infrastructure for Network Computing" +msgstr "" + +msgctxt "about_copyright" +msgid "" +"© 2003–2013 University of California, Berkeley.\n" +"All Rights Reserved." +msgstr "" + diff --git a/locale/ms/BOINC-Client.po b/locale/ms/BOINC-Client.po new file mode 100644 index 0000000000..03bd291b78 --- /dev/null +++ b/locale/ms/BOINC-Client.po @@ -0,0 +1,159 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-10-15 22:25-0700\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: acct_mgr.cpp:450 acct_mgr.cpp:459 +msgid "Message from account manager" +msgstr "" + +#: client_msgs.cpp:81 +msgid "Message from server" +msgstr "" + +#: client_state.cpp:258 +msgid "" +"Some tasks need more memory than allowed by your preferences. Please check " +"the preferences." +msgstr "" + +#: client_state.cpp:520 +msgid "Couldn't write state file; check directory permissions" +msgstr "" + +#: cs_cmdline.cpp:303 +msgid "The HTTP_PROXY environment variable must specify an HTTP proxy" +msgstr "" + +#: cs_scheduler.cpp:613 +#, c-format +msgid "" +"You used the wrong URL for this project. When convenient, remove this " +"project, then add %s" +msgstr "" + +#: cs_statefile.cpp:828 ../sched/sched_types.cpp:259 +msgid "Syntax error in app_info.xml" +msgstr "" + +#: cs_statefile.cpp:868 +msgid "File referenced in app_info.xml does not exist: " +msgstr "" + +#: current_version.cpp:91 +msgid "A new version of BOINC is available." +msgstr "" + +#: current_version.cpp:94 current_version.cpp:102 +msgid "Download" +msgstr "" + +#: log_flags.cpp:269 log_flags.cpp:449 +msgid "Unexpected text in cc_config.xml" +msgstr "" + +#: log_flags.cpp:423 log_flags.cpp:475 +msgid "Unrecognized tag in cc_config.xml" +msgstr "" + +#: log_flags.cpp:440 +msgid "Missing start tag in cc_config.xml" +msgstr "" + +#: log_flags.cpp:465 +msgid "Error in cc_config.xml options" +msgstr "" + +#: log_flags.cpp:483 +msgid "Missing end tag in cc_config.xml" +msgstr "" + +#: ../sched/handle_request.cpp:307 +msgid "Invalid or missing account key. To fix, remove and add this project." +msgstr "" + +#: ../sched/handle_request.cpp:849 +msgid "Invalid code signing key. To fix, remove and add this project." +msgstr "" + +#: ../sched/handle_request.cpp:859 +msgid "" +"The project has changed its security key. Please remove and add this " +"project." +msgstr "" + +#: ../sched/handle_request.cpp:943 +msgid "This project doesn't support operating system" +msgstr "" + +#: ../sched/handle_request.cpp:969 +msgid "This project doesn't support CPU type" +msgstr "" + +#: ../sched/handle_request.cpp:993 +msgid "" +"Your BOINC client software is too old. Please install the current version." +msgstr "" + +#: ../sched/handle_request.cpp:1259 +msgid "This project doesn't support computers of type" +msgstr "" + +#: ../sched/sched_send.cpp:1092 +msgid "Upgrade to the latest driver to process tasks using your computer's GPU" +msgstr "" + +#: ../sched/sched_send.cpp:1099 +msgid "" +"Upgrade to the latest driver to use all of this project's GPU applications" +msgstr "" + +#: ../sched/sched_send.cpp:1118 +msgid "" +"A newer version of BOINC is needed to use your NVIDIA GPU; please upgrade to " +"the current version" +msgstr "" + +#: ../sched/sched_send.cpp:1146 +#, c-format +msgid "An %s GPU is required to run tasks for this project" +msgstr "" + +#: ../sched/sched_send.cpp:1262 +msgid "No tasks are available for the applications you have selected." +msgstr "" + +#: ../sched/sched_send.cpp:1288 +msgid "Your computer type is not supported by this project" +msgstr "" + +#: ../sched/sched_send.cpp:1294 +msgid "Newer BOINC version required; please install current version" +msgstr "" + +#: ../sched/sched_send.cpp:1305 +#, c-format +msgid "" +"Tasks for %s are available, but your preferences are set to not accept them" +msgstr "" + +#: ../sched/sched_types.cpp:254 +msgid "Unknown app name in app_info.xml" +msgstr "" + +#: ../sched/sched_version.cpp:214 +msgid "Your app_info.xml file doesn't have a usable version of" +msgstr "" diff --git a/locale/ms/BOINC-Manager.po b/locale/ms/BOINC-Manager.po new file mode 100644 index 0000000000..741d33fdbb --- /dev/null +++ b/locale/ms/BOINC-Manager.po @@ -0,0 +1,3705 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-02-02 00:00-0800\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: AccountInfoPage.cpp:387 +#, c-format +msgid "Identify your account at %s" +msgstr "" + +#: AccountInfoPage.cpp:393 +msgid "" +"Please enter your account information\n" +"(to create an account, visit the project's web site)" +msgstr "" + +#: AccountInfoPage.cpp:397 +msgid "" +"This project is not currently accepting new accounts.\n" +"You can add it only if you already have an account." +msgstr "" + +#: AccountInfoPage.cpp:401 +msgid "Are you already running this project?" +msgstr "" + +#: AccountInfoPage.cpp:405 +msgid "&No, new user" +msgstr "" + +#: AccountInfoPage.cpp:408 +msgid "&Yes, existing user" +msgstr "" + +#: AccountInfoPage.cpp:413 +msgid "" +"We were not able to set up your account information\n" +"automatically.\n" +"\n" +"Please click on the 'Find login information' link\n" +"below to find out what to put in the email address and\n" +"password fields." +msgstr "" + +#: AccountInfoPage.cpp:416 +msgid "Find login information" +msgstr "" + +#: AccountInfoPage.cpp:436 AccountInfoPage.cpp:641 +msgid "&Password:" +msgstr "" + +#: AccountInfoPage.cpp:443 AccountInfoPage.cpp:665 +msgid "Choose a &password:" +msgstr "" + +#: AccountInfoPage.cpp:446 +msgid "C&onfirm password:" +msgstr "" + +#: AccountInfoPage.cpp:453 +#, c-format +msgid "Are you already running %s?" +msgstr "" + +#: AccountInfoPage.cpp:482 +msgid "&Username:" +msgstr "" + +#: AccountInfoPage.cpp:508 +msgid "&Email address:" +msgstr "" + +#: AccountInfoPage.cpp:515 +#, c-format +msgid "minimum length %d" +msgstr "" + +#: AccountInfoPage.cpp:522 +msgid "Forgot your password?" +msgstr "" + +#: AccountInfoPage.cpp:529 +msgid "" +"If you have not yet registered with this account manager,\n" +"please do so before proceeding. Click on the link below\n" +"to register or to retrieve a forgotten password." +msgstr "" + +#: AccountInfoPage.cpp:532 +msgid "Account manager web site" +msgstr "" + +#: AccountInfoPage.cpp:574 WelcomePage.cpp:348 +msgid "Add project" +msgstr "" + +#: AccountInfoPage.cpp:576 +msgid "Update account manager" +msgstr "" + +#: AccountInfoPage.cpp:578 WelcomePage.cpp:307 WelcomePage.cpp:321 +msgid "Use account manager" +msgstr "" + +#: AccountInfoPage.cpp:585 +msgid "Please enter a user name." +msgstr "" + +#: AccountInfoPage.cpp:587 +msgid "Please enter an email address." +msgstr "" + +#: AccountInfoPage.cpp:597 +#, c-format +msgid "Please enter a password of at least %d characters." +msgstr "" + +#: AccountInfoPage.cpp:607 +msgid "" +"The password and confirmation password do not match. Please type them again." +msgstr "" + +#: AccountManagerInfoPage.cpp:272 +msgid "Choose an account manager" +msgstr "" + +#: AccountManagerInfoPage.cpp:275 +msgid "" +"To choose an account manager, click its name or \n" +"type its URL below." +msgstr "" + +#: AccountManagerInfoPage.cpp:279 +msgid "Account manager details:" +msgstr "" + +#: AccountManagerInfoPage.cpp:283 +msgid "Account manager &URL:" +msgstr "" + +#: AccountManagerInfoPage.cpp:287 +msgid "Open web page" +msgstr "" + +#: AccountManagerInfoPage.cpp:290 +msgid "Visit this account manager's web site" +msgstr "" + +#: AccountManagerProcessingPage.cpp:187 AccountManagerPropertiesPage.cpp:193 +#, c-format +msgid "Communicating with %s." +msgstr "" + +#: AccountManagerProcessingPage.cpp:194 AccountManagerPropertiesPage.cpp:200 +msgid "Communicating with server." +msgstr "" + +#: AccountManagerProcessingPage.cpp:199 AccountManagerPropertiesPage.cpp:205 +msgid "Please wait..." +msgstr "" + +#: AccountManagerProcessingPage.cpp:326 +msgid "An internal server error has occurred.\n" +msgstr "" + +#: AdvancedFrame.cpp:95 +msgid "Connected" +msgstr "" + +#: AdvancedFrame.cpp:103 +msgid "Disconnected" +msgstr "" + +#: AdvancedFrame.cpp:322 sg_BoincSimpleFrame.cpp:119 +#, c-format +msgid "Close the %s window" +msgstr "" + +#: AdvancedFrame.cpp:325 sg_BoincSimpleFrame.cpp:122 +msgid "&Close Window" +msgstr "" + +#: AdvancedFrame.cpp:336 AdvancedFrame.cpp:343 AdvancedFrame.cpp:350 +#, c-format +msgid "Exit %s" +msgstr "" + +#: AdvancedFrame.cpp:371 +msgid "&Notices\tCtrl+Shift+N" +msgstr "" + +#: AdvancedFrame.cpp:372 +msgid "Display notices" +msgstr "" + +#: AdvancedFrame.cpp:377 +msgid "&Projects\tCtrl+Shift+P" +msgstr "" + +#: AdvancedFrame.cpp:378 +msgid "Display projects" +msgstr "" + +#: AdvancedFrame.cpp:383 +msgid "&Tasks\tCtrl+Shift+T" +msgstr "" + +#: AdvancedFrame.cpp:384 +msgid "Display tasks" +msgstr "" + +#: AdvancedFrame.cpp:389 +msgid "Trans&fers\tCtrl+Shift+X" +msgstr "" + +#: AdvancedFrame.cpp:390 +msgid "Display transfers" +msgstr "" + +#: AdvancedFrame.cpp:395 +msgid "&Statistics\tCtrl+Shift+S" +msgstr "" + +#: AdvancedFrame.cpp:396 +msgid "Display statistics" +msgstr "" + +#: AdvancedFrame.cpp:401 +msgid "&Disk usage\tCtrl+Shift+D" +msgstr "" + +#: AdvancedFrame.cpp:402 +msgid "Display disk usage" +msgstr "" + +#: AdvancedFrame.cpp:409 +msgid "Simple &View...\tCtrl+Shift+V" +msgstr "" + +#: AdvancedFrame.cpp:410 +msgid "Display the simple graphical interface." +msgstr "" + +#: AdvancedFrame.cpp:424 +msgid "&Add project or account manager..." +msgstr "" + +#: AdvancedFrame.cpp:425 sg_ProjectPanel.cpp:76 +msgid "Volunteer for any or all of 30+ projects in many areas of science" +msgstr "" + +#: AdvancedFrame.cpp:429 +#, c-format +msgid "&Synchronize with %s" +msgstr "" + +#: AdvancedFrame.cpp:433 +#, c-format +msgid "Get current settings from %s" +msgstr "" + +#: AdvancedFrame.cpp:443 +msgid "&Add project..." +msgstr "" + +#: AdvancedFrame.cpp:444 +msgid "Add a project" +msgstr "" + +#: AdvancedFrame.cpp:447 +#, c-format +msgid "S&top using %s..." +msgstr "" + +#: AdvancedFrame.cpp:453 +msgid "Remove this computer from account manager control." +msgstr "" + +#: AdvancedFrame.cpp:458 sg_BoincSimpleFrame.cpp:178 +msgid "&Options..." +msgstr "" + +#: AdvancedFrame.cpp:459 sg_BoincSimpleFrame.cpp:179 +msgid "Configure display options and proxy settings" +msgstr "" + +#: AdvancedFrame.cpp:463 sg_BoincSimpleFrame.cpp:172 +msgid "Computing &preferences..." +msgstr "" + +#: AdvancedFrame.cpp:464 sg_BoincSimpleFrame.cpp:173 +msgid "Configure computing preferences" +msgstr "" + +#: AdvancedFrame.cpp:472 +msgid "&Run always" +msgstr "" + +#: AdvancedFrame.cpp:473 +msgid "Allow work regardless of preferences" +msgstr "" + +#: AdvancedFrame.cpp:477 +msgid "Run based on &preferences" +msgstr "" + +#: AdvancedFrame.cpp:478 +msgid "Allow work according to preferences" +msgstr "" + +#: AdvancedFrame.cpp:482 +msgid "&Suspend" +msgstr "" + +#: AdvancedFrame.cpp:483 +msgid "Stop work regardless of preferences" +msgstr "" + +#: AdvancedFrame.cpp:508 +msgid "Use GPU always" +msgstr "" + +#: AdvancedFrame.cpp:509 +msgid "Allow GPU work regardless of preferences" +msgstr "" + +#: AdvancedFrame.cpp:513 +msgid "Use GPU based on preferences" +msgstr "" + +#: AdvancedFrame.cpp:514 +msgid "Allow GPU work according to preferences" +msgstr "" + +#: AdvancedFrame.cpp:518 +msgid "Suspend GPU" +msgstr "" + +#: AdvancedFrame.cpp:519 +msgid "Stop GPU work regardless of preferences" +msgstr "" + +#: AdvancedFrame.cpp:543 +msgid "Network activity always available" +msgstr "" + +#: AdvancedFrame.cpp:544 +msgid "Allow network activity regardless of preferences" +msgstr "" + +#: AdvancedFrame.cpp:548 +msgid "Network activity based on preferences" +msgstr "" + +#: AdvancedFrame.cpp:549 +msgid "Allow network activity according to preferences" +msgstr "" + +#: AdvancedFrame.cpp:553 +msgid "Network activity suspended" +msgstr "" + +#: AdvancedFrame.cpp:554 +msgid "Stop BOINC network activity" +msgstr "" + +#: AdvancedFrame.cpp:564 +#, c-format +msgid "Connect to another computer running %s" +msgstr "" + +#: AdvancedFrame.cpp:569 +msgid "Select computer..." +msgstr "" + +#: AdvancedFrame.cpp:574 +msgid "Shut down connected client..." +msgstr "" + +#: AdvancedFrame.cpp:575 +msgid "Shut down the currently connected client" +msgstr "" + +#: AdvancedFrame.cpp:579 +msgid "Run CPU &benchmarks" +msgstr "" + +#: AdvancedFrame.cpp:580 +msgid "Runs BOINC CPU benchmarks" +msgstr "" + +#: AdvancedFrame.cpp:584 +msgid "Do network communication" +msgstr "" + +#: AdvancedFrame.cpp:585 +msgid "Do all pending network communication" +msgstr "" + +#: AdvancedFrame.cpp:589 +msgid "Read config files" +msgstr "" + +#: AdvancedFrame.cpp:590 +msgid "Read configuration info from cc_config.xml and any app_config.xml files" +msgstr "" + +#: AdvancedFrame.cpp:594 +msgid "Read local prefs file" +msgstr "" + +#: AdvancedFrame.cpp:595 +msgid "Read preferences from global_prefs_override.xml." +msgstr "" + +#: AdvancedFrame.cpp:600 +#, c-format +msgid "Launch another instance of %s..." +msgstr "" + +#: AdvancedFrame.cpp:604 +#, c-format +msgid "Launch another %s" +msgstr "" + +#: AdvancedFrame.cpp:614 +msgid "Event Log...\tCtrl+Shift+E" +msgstr "" + +#: AdvancedFrame.cpp:615 +msgid "Display diagnostic messages." +msgstr "" + +#: AdvancedFrame.cpp:625 sg_BoincSimpleFrame.cpp:188 +#, c-format +msgid "%s &help" +msgstr "" + +#: AdvancedFrame.cpp:631 sg_BoincSimpleFrame.cpp:194 +#, c-format +msgid "Show information about %s" +msgstr "" + +#: AdvancedFrame.cpp:643 +#, c-format +msgid "&%s help" +msgstr "" + +#: AdvancedFrame.cpp:649 sg_BoincSimpleFrame.cpp:212 +#, c-format +msgid "Show information about the %s" +msgstr "" + +#: AdvancedFrame.cpp:661 sg_BoincSimpleFrame.cpp:224 +#, c-format +msgid "%s &web site" +msgstr "" + +#: AdvancedFrame.cpp:667 sg_BoincSimpleFrame.cpp:230 +#, c-format +msgid "Show information about BOINC and %s" +msgstr "" + +#: AdvancedFrame.cpp:679 BOINCTaskBar.cpp:530 sg_BoincSimpleFrame.cpp:242 +#, c-format +msgid "&About %s..." +msgstr "" + +#: AdvancedFrame.cpp:685 sg_BoincSimpleFrame.cpp:248 +msgid "Licensing and copyright information." +msgstr "" + +#: AdvancedFrame.cpp:692 sg_BoincSimpleFrame.cpp:255 +msgid "&File" +msgstr "" + +#: AdvancedFrame.cpp:696 sg_BoincSimpleFrame.cpp:259 +msgid "&View" +msgstr "" + +#: AdvancedFrame.cpp:700 sg_BoincSimpleFrame.cpp:263 +msgid "&Tools" +msgstr "" + +#: AdvancedFrame.cpp:704 +msgid "&Activity" +msgstr "" + +#: AdvancedFrame.cpp:708 +msgid "A&dvanced" +msgstr "" + +#: AdvancedFrame.cpp:712 DlgEventLog.cpp:332 sg_BoincSimpleFrame.cpp:267 +#: wizardex.cpp:374 wizardex.cpp:381 +msgid "&Help" +msgstr "" + +#: AdvancedFrame.cpp:1199 +#, c-format +msgid "%s - Stop using %s" +msgstr "" + +#: AdvancedFrame.cpp:1204 +#, c-format +msgid "" +"If you stop using %s,\n" +"you'll keep all your current projects,\n" +"but you'll have to manage projects manually.\n" +"\n" +"Do you want to stop using %s?" +msgstr "" + +#: AdvancedFrame.cpp:1401 +#, c-format +msgid "%s - Shut down the current client..." +msgstr "" + +#: AdvancedFrame.cpp:1410 +#, c-format +msgid "" +"%s will shut down the current client\n" +"and prompt you for another host to connect to." +msgstr "" + +#: AdvancedFrame.cpp:1745 DlgAbout.cpp:119 +#, c-format +msgid "%s" +msgstr "" + +#: AdvancedFrame.cpp:1754 +#, c-format +msgid "%s has successfully added %s" +msgstr "" + +#: AdvancedFrame.cpp:1893 +#, c-format +msgid "%s - (%s)" +msgstr "" + +#: AdvancedFrame.cpp:1897 +#, c-format +msgid "Connecting to %s" +msgstr "" + +#: AdvancedFrame.cpp:1900 +#, c-format +msgid "Connected to %s (%s)" +msgstr "" + +#: AlreadyExistsPage.cpp:184 +msgid "Username already in use" +msgstr "" + +#: AlreadyExistsPage.cpp:187 +msgid "" +"An account with that username already exists and has a\n" +"different password than the one you entered.\n" +"\n" +"Please visit the project's web site and follow the instructions there." +msgstr "" + +#: AlreadyExistsPage.cpp:191 +msgid "Email address already in use" +msgstr "" + +#: AlreadyExistsPage.cpp:194 +msgid "" +"An account with that email address already exists and has a\n" +"different password than the one you entered.\n" +"\n" +"Please visit the project's web site and follow the instructions there." +msgstr "" + +#: AsyncRPC.cpp:1031 +msgid "Communicating with BOINC client. Please wait ..." +msgstr "" + +#: AsyncRPC.cpp:1034 +#, c-format +msgid "&Quit %s" +msgstr "" + +#: AsyncRPC.cpp:1036 +#, c-format +msgid "E&xit %s" +msgstr "" + +#: AsyncRPC.cpp:1040 +#, c-format +msgid "%s - Communication" +msgstr "" + +#: AsyncRPC.cpp:1056 DlgAdvPreferencesBase.cpp:107 sg_DlgPreferences.cpp:433 +msgid "Cancel" +msgstr "" + +#: BOINCBaseFrame.cpp:505 +#, c-format +msgid "%s - Connection Error" +msgstr "" + +#: BOINCBaseFrame.cpp:514 +msgid "" +"You currently are not authorized to manage the client.\n" +"Please contact your administrator to add you to the 'boinc_users' local user " +"group." +msgstr "" + +#: BOINCBaseFrame.cpp:523 +msgid "" +"Authorization failed connecting to running client.\n" +"Make sure you start this program in the same directory as the client." +msgstr "" + +#: BOINCBaseFrame.cpp:525 +msgid "Authorization failed connecting to running client." +msgstr "" + +#: BOINCBaseFrame.cpp:533 +msgid "The password you have provided is incorrect, please try again." +msgstr "" + +#: BOINCBaseFrame.cpp:577 +#, c-format +msgid "%s - Connection Failed" +msgstr "" + +#: BOINCBaseFrame.cpp:586 +#, c-format +msgid "" +"%s is not able to connect to a %s client.\n" +"Would you like to try to connect again?" +msgstr "" + +#: BOINCBaseFrame.cpp:622 +#, c-format +msgid "%s - Daemon Start Failed" +msgstr "" + +#: BOINCBaseFrame.cpp:632 +#, c-format +msgid "" +"%s is not able to start a %s client.\n" +"Please launch the Control Panel->Administative Tools->Services applet and " +"start the BOINC service." +msgstr "" + +#: BOINCBaseFrame.cpp:638 +#, c-format +msgid "" +"%s is not able to start a %s client.\n" +"Please start the daemon and try again." +msgstr "" + +#: BOINCBaseFrame.cpp:689 +#, c-format +msgid "%s - Connection Status" +msgstr "" + +#: BOINCBaseFrame.cpp:700 +#, c-format +msgid "" +"%s is not currently connected to a %s client.\n" +"Please use the 'Advanced\\Select Computer...' menu option to connect up to a " +"%s client.\n" +"To connect up to your local computer please use 'localhost' as the host name." +msgstr "" + +#: BOINCBaseView.cpp:779 +msgid "Project web pages" +msgstr "" + +#: BOINCClientManager.cpp:575 +#, c-format +msgid "%s - Unexpected Exit" +msgstr "" + +#: BOINCClientManager.cpp:585 +#, c-format +msgid "" +"The %s client has exited unexpectedly 3 times within the last %d minutes.\n" +"Would you like to restart it again?" +msgstr "" + +#: BOINCDialupManager.cpp:61 +#, c-format +msgid "%s - Network Status" +msgstr "" + +#: BOINCDialupManager.cpp:241 +#, c-format +msgid "" +"%s needs to connect to the Internet.\n" +"May it do so now?" +msgstr "" + +#: BOINCDialupManager.cpp:254 +#, c-format +msgid "%s is connecting to the Internet." +msgstr "" + +#: BOINCDialupManager.cpp:303 +#, c-format +msgid "%s has successfully connected to the Internet." +msgstr "" + +#: BOINCDialupManager.cpp:331 +#, c-format +msgid "%s failed to connect to the Internet." +msgstr "" + +#: BOINCDialupManager.cpp:372 +#, c-format +msgid "" +"%s has detected it is now connected to the Internet.\n" +"Updating all projects and retrying all transfers." +msgstr "" + +#: BOINCDialupManager.cpp:417 +#, c-format +msgid "%s has successfully disconnected from the Internet." +msgstr "" + +#: BOINCDialupManager.cpp:433 +#, c-format +msgid "%s failed to disconnected from the Internet." +msgstr "" + +#: BOINCGUIApp.cpp:339 +#, c-format +msgid "" +"You currently are not authorized to manage the client.\n" +"\n" +"To run %s as this user, please:\n" +" - reinstall %s answering \"Yes\" to the question about\n" +" non-administrative users\n" +" or\n" +" - contact your administrator to add you to the 'boinc_master'\n" +" user group." +msgstr "" + +#: BOINCGUIApp.cpp:345 +#, c-format +msgid "" +"%s ownership or permissions are not set properly; please reinstall %s.\n" +"(Error code %d" +msgstr "" + +#: BOINCGUIApp.cpp:351 +msgid " at " +msgstr "" + +#: BOINCGUIApp.cpp:354 MainDocument.cpp:2484 MainDocument.cpp:2534 +#: MainDocument.cpp:2554 ViewTransfers.cpp:803 +msgid ")" +msgstr "" + +#: BOINCGUIApp.cpp:384 +msgid "" +"A reboot is required in order for BOINC to run properly.\n" +"Please reboot your computer and try again." +msgstr "" + +#: BOINCGUIApp.cpp:385 DlgAbout.cpp:153 +msgid "BOINC Manager" +msgstr "" + +#: BOINCGUIApp.cpp:572 +msgid "BOINC Manager was started by the operating system automatically" +msgstr "" + +#: BOINCGUIApp.cpp:574 +msgid "Startup BOINC so only the system tray icon is visible" +msgstr "" + +#: BOINCGUIApp.cpp:576 +msgid "Directory containing the BOINC Client executable" +msgstr "" + +#: BOINCGUIApp.cpp:577 +msgid "BOINC data directory" +msgstr "" + +#: BOINCGUIApp.cpp:579 +msgid "Host name or IP address" +msgstr "" + +#: BOINCGUIApp.cpp:580 +msgid "GUI RPC port number" +msgstr "" + +#: BOINCGUIApp.cpp:581 +msgid "Password" +msgstr "" + +#: BOINCGUIApp.cpp:582 +msgid "Startup BOINC with these optional arguments" +msgstr "" + +#: BOINCGUIApp.cpp:583 +msgid "disable BOINC security users and permissions" +msgstr "" + +#: BOINCGUIApp.cpp:584 +msgid "set skin debugging mode to enable skin manager error messages" +msgstr "" + +#: BOINCGUIApp.cpp:585 +msgid "multiple instances of BOINC Manager allowed" +msgstr "" + +#: BOINCGUIApp.cpp:587 +msgid "Not used: workaround for bug in XCode 4.2" +msgstr "" + +#: BOINCGUIApp.cpp:814 +msgid "(Automatic Detection)" +msgstr "" + +#: BOINCGUIApp.cpp:815 +msgid "(Unknown)" +msgstr "" + +#: BOINCGUIApp.cpp:816 +msgid "(User Defined)" +msgstr "" + +#: BOINCTaskBar.cpp:508 +#, c-format +msgid "Open %s Web..." +msgstr "" + +#: BOINCTaskBar.cpp:515 +#, c-format +msgid "Open %s..." +msgstr "" + +#: BOINCTaskBar.cpp:522 BOINCTaskBar.cpp:619 BOINCTaskBar.cpp:627 +msgid "Snooze" +msgstr "" + +#: BOINCTaskBar.cpp:524 BOINCTaskBar.cpp:646 BOINCTaskBar.cpp:654 +msgid "Snooze GPU" +msgstr "" + +#: BOINCTaskBar.cpp:542 +msgid "E&xit" +msgstr "" + +#: BOINCTaskBar.cpp:612 ViewProjects.cpp:718 ViewWork.cpp:795 +#: sg_BoincSimpleFrame.cpp:758 sg_ProjectCommandPopup.cpp:110 +#: sg_TaskCommandPopup.cpp:102 +msgid "Resume" +msgstr "" + +#: BOINCTaskBar.cpp:639 +msgid "Resume GPU" +msgstr "" + +#: BOINCTaskBar.cpp:713 +msgid "Computing is enabled" +msgstr "" + +#: BOINCTaskBar.cpp:717 +msgid "Computing is suspended - " +msgstr "" + +#: BOINCTaskBar.cpp:727 +msgid "GPU computing is enabled" +msgstr "" + +#: BOINCTaskBar.cpp:730 +msgid "GPU computing is suspended - " +msgstr "" + +#: BOINCTaskBar.cpp:739 +msgid "Network is enabled" +msgstr "" + +#: BOINCTaskBar.cpp:742 +msgid "Network is suspended - " +msgstr "" + +#: BOINCTaskBar.cpp:750 +msgid "Reconnecting to client." +msgstr "" + +#: BOINCTaskBar.cpp:752 +msgid "Not connected to a client." +msgstr "" + +#: BOINCTaskBar.cpp:805 +#, c-format +msgid "%s Notices" +msgstr "" + +#: BOINCTaskBar.cpp:811 +msgid "There are new notices - click to view." +msgstr "" + +#: CompletionErrorPage.cpp:199 +msgid "Failed to add project" +msgstr "" + +#: CompletionErrorPage.cpp:204 +msgid "Failed to update account manager" +msgstr "" + +#: CompletionErrorPage.cpp:208 +msgid "Failed to remove account manager" +msgstr "" + +#: CompletionErrorPage.cpp:212 +msgid "Failed to add account manager" +msgstr "" + +#: CompletionErrorPage.cpp:221 +msgid "" +"Please try again later.\n" +"\n" +"Click Finish to close." +msgstr "" + +#: CompletionErrorPage.cpp:225 CompletionPage.cpp:222 CompletionPage.cpp:242 +#: CompletionPage.cpp:273 +msgid "Click Finish to close." +msgstr "" + +#: CompletionErrorPage.cpp:234 +msgid "Messages from server:" +msgstr "" + +#: CompletionPage.cpp:207 +msgid "Project added" +msgstr "" + +#: CompletionPage.cpp:213 +msgid "This project has been successfully added." +msgstr "" + +#: CompletionPage.cpp:218 +msgid "" +"When you click Finish, your web browser will go to a page where\n" +"you can set your account name and preferences." +msgstr "" + +#: CompletionPage.cpp:232 +#, c-format +msgid "Update from %s completed." +msgstr "" + +#: CompletionPage.cpp:236 +msgid "Update completed." +msgstr "" + +#: CompletionPage.cpp:247 +msgid "Now using account manager" +msgstr "" + +#: CompletionPage.cpp:252 +#, c-format +msgid "Welcome to %s!" +msgstr "" + +#: CompletionPage.cpp:263 +#, c-format +msgid "You are now using %s to manage accounts." +msgstr "" + +#: CompletionPage.cpp:267 +msgid "You are now using this account manager." +msgstr "" + +#: DlgAbout.cpp:113 mac/Mac_GUI.cpp:96 +#, c-format +msgid "About %s" +msgstr "" + +#: DlgAbout.cpp:172 +msgid "Version:" +msgstr "" + +#: DlgAbout.cpp:180 +msgid "wxWidgets Version:" +msgstr "" + +#: DlgAbout.cpp:188 +msgid "Copyright:" +msgstr "" + +#: DlgAbout.cpp:192 +msgid "" +"(C) 2003-2013 University of California, Berkeley.\n" +"All Rights Reserved." +msgstr "" + +#: DlgAbout.cpp:196 +msgid "Berkeley Open Infrastructure for Network Computing" +msgstr "" + +#: DlgAbout.cpp:208 DlgExitMessage.cpp:173 DlgGenericMessage.cpp:120 +#: DlgOptions.cpp:396 DlgSelectComputer.cpp:163 +msgid "&OK" +msgstr "" + +#: DlgAdvPreferences.cpp:544 +msgid "invalid number" +msgstr "" + +#: DlgAdvPreferences.cpp:545 +msgid "invalid time, format is HH:MM" +msgstr "" + +#: DlgAdvPreferences.cpp:546 +msgid "invalid time interval, format is HH:MM-HH:MM" +msgstr "" + +#: DlgAdvPreferences.cpp:751 +msgid "invalid input value detected" +msgstr "" + +#: DlgAdvPreferences.cpp:753 +msgid "Validation Error" +msgstr "" + +#: DlgAdvPreferences.cpp:885 DlgAdvPreferences.cpp:891 +#: DlgAdvPreferences.cpp:897 +msgid "Applications to add" +msgstr "" + +#: DlgAdvPreferences.cpp:914 +#, c-format +msgid "'%s' is not an executable application." +msgstr "" + +#: DlgAdvPreferences.cpp:915 DlgAdvPreferences.cpp:962 +#: DlgAdvPreferences.cpp:986 +msgid "Add Exclusive App" +msgstr "" + +#: DlgAdvPreferences.cpp:927 +msgid "Name of application to add?" +msgstr "" + +#: DlgAdvPreferences.cpp:927 +msgid "Add exclusive app" +msgstr "" + +#: DlgAdvPreferences.cpp:961 +#, c-format +msgid "Application names must end with '%s'" +msgstr "" + +#: DlgAdvPreferences.cpp:985 +#, c-format +msgid "'%s' is already in the list." +msgstr "" + +#: DlgAdvPreferences.cpp:1077 +msgid "" +"Do you really want to clear all local preferences?\n" +"(This will not affect exclusive applications.)" +msgstr "" + +#: DlgAdvPreferences.cpp:1078 sg_DlgPreferences.cpp:1030 +msgid "Confirmation" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:46 sg_DlgPreferences.cpp:946 +#, c-format +msgid "%s - Preferences" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:62 +msgid "" +"This dialog controls preferences for this computer only.\n" +"Click OK to set preferences.\n" +"Click Clear to restore web-based settings (except exclusive apps)." +msgstr "" + +#: DlgAdvPreferencesBase.cpp:65 sg_DlgPreferences.cpp:428 +msgid "Clear" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:66 +msgid "clear all local preferences and close the dialog" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:81 +msgid "processor usage" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:84 +msgid "network usage" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:87 +msgid "disk and memory usage" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:90 +msgid "exclusive applications" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:102 sg_DlgPreferences.cpp:424 +msgid "OK" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:103 +msgid "save all values and close the dialog" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:108 +msgid "close the dialog without saving" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:112 Localization.cpp:35 Localization.cpp:121 +#: Localization.cpp:139 sg_BoincSimpleFrame.cpp:794 sg_DlgPreferences.cpp:439 +msgid "Help" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:113 +msgid "shows the preferences web page" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:135 +msgid "Computing allowed" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:139 +msgid "While computer is on batteries" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:142 +msgid "" +"check this if you want this computer to do work while it runs on batteries" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:148 +msgid "While computer is in use" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:151 +msgid "" +"check this if you want this computer to do work even when you're using it" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:157 +msgid "Use GPU while computer is in use" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:160 +msgid "" +"check this if you want your GPU to do work even when you're using the " +"computer" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:172 +msgid "Only after computer has been idle for" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:182 +msgid "" +"do work only after you haven't used the computer for this number of minutes" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:187 DlgAdvPreferencesBase.cpp:336 +#: sg_DlgPreferences.cpp:417 +msgid "minutes" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:206 +msgid "While processor usage is less than" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:216 +msgid "suspend work if processor usage exceeds this level" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:221 +msgid "percent (0 means no restriction)" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:235 DlgAdvPreferencesBase.cpp:496 +msgid "Every day between hours of" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:239 +msgid "start work at this time" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:243 DlgAdvPreferencesBase.cpp:504 +#: sg_DlgPreferences.cpp:326 sg_DlgPreferences.cpp:348 +msgid "and" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:247 +msgid "stop work at this time" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:251 DlgAdvPreferencesBase.cpp:512 +msgid "(no restriction if equal)" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:256 DlgAdvPreferencesBase.cpp:517 +msgid "Day-of-week override:" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:261 DlgAdvPreferencesBase.cpp:522 +msgid "check box to specify hours for this day of week" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:267 DlgAdvPreferencesBase.cpp:528 +msgid "Monday" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:274 DlgAdvPreferencesBase.cpp:535 +msgid "Tuesday" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:281 DlgAdvPreferencesBase.cpp:542 +msgid "Wednesday" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:288 DlgAdvPreferencesBase.cpp:549 +msgid "Thursday" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:295 DlgAdvPreferencesBase.cpp:556 +msgid "Friday" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:302 DlgAdvPreferencesBase.cpp:563 +msgid "Saturday" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:309 DlgAdvPreferencesBase.cpp:570 +msgid "Sunday" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:323 +msgid "Other options" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:330 +msgid "Switch between applications every" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:339 +msgid "On multiprocessor systems, use at most" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:346 +#, no-c-format +msgid "% of the processors (0 means ignore this setting)" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:349 DlgAdvPreferencesBase.cpp:605 +#: DlgAdvPreferencesBase.cpp:627 DlgAdvPreferencesBase.cpp:648 +#: DlgAdvPreferencesBase.cpp:669 DlgAdvPreferencesBase.cpp:679 +msgid "Use at most" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:356 +#, no-c-format +msgid "% CPU time" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:378 +msgid "General options" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:386 +msgid "Maximum download rate" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:392 DlgAdvPreferencesBase.cpp:401 +msgid "KBytes/sec." +msgstr "" + +#: DlgAdvPreferencesBase.cpp:395 +msgid "Maximum upload rate" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:406 +msgid "Transfer at most" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:412 +msgid "Mbytes" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:415 +msgid "every" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:421 DlgAdvPreferencesBase.cpp:444 +#: DlgAdvPreferencesBase.cpp:463 +msgid "days" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:429 +msgid "Minimum work buffer" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:438 +msgid "Try to maintain enough tasks to keep busy for this many days" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:450 +msgid "Max additional work buffer" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:459 +msgid "In addition, maintain enough tasks for up to this many days" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:466 +msgid "Skip image file verification" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:468 +msgid "check this if your Internet provider modifies image files" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:476 +msgid "Connect options" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:478 +msgid "Confirm before connecting to internet" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:480 +msgid "" +"if checked, a confirmation dialog will be displayed before trying to connect " +"to the Internet" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:484 +msgid "Disconnect when done" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:486 +msgid "" +"if checked, BOINC hangs up when network usage is done\n" +"(only relevant for dialup-connection)" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:492 +msgid "Network usage allowed" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:500 +msgid "network usage start hour" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:508 +msgid "network usage stop hour" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:598 DlgItemProperties.cpp:231 +msgid "Disk usage" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:609 +msgid "the maximum disk space used by BOINC (in Gigabytes)" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:613 +msgid "Gigabytes disk space" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:616 +msgid "Leave at least" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:620 +msgid "BOINC leaves at least this amount of disk space free (in Gigabytes)" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:624 +msgid "Gigabytes disk space free" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:631 +msgid "BOINC uses at most this percentage of total disk space" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:636 +#, no-c-format +msgid "% of total disk space" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:639 +msgid "Tasks checkpoint to disk at most every" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:645 +msgid "seconds" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:655 +#, no-c-format +msgid "% of page file (swap space)" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:662 +msgid "Memory usage" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:676 +#, no-c-format +msgid "% when computer is in use" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:686 +#, no-c-format +msgid "% when computer is idle" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:691 +msgid "Leave applications in memory while suspended" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:693 +msgid "if checked, suspended work units are left in memory" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:713 +msgid "" +"Suspend processor and network usage when these applications are running:" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:722 +msgid "Add..." +msgstr "" + +#: DlgAdvPreferencesBase.cpp:723 +msgid "Add an application to this list" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:728 ViewProjects.cpp:202 +#: sg_ProjectCommandPopup.cpp:85 +msgid "Remove" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:729 +msgid "Remove an application from this list" +msgstr "" + +#: DlgAdvPreferencesBase.cpp:738 +msgid "For advanced options, refer to " +msgstr "" + +#: DlgEventLog.cpp:219 +#, c-format +msgid "%s - Event Log" +msgstr "" + +#: DlgEventLog.cpp:232 ViewMessages.cpp:117 ViewProjects.cpp:219 +#: ViewStatistics.cpp:435 ViewStatistics.cpp:2009 ViewTransfers.cpp:182 +#: ViewWork.cpp:232 +msgid "Project" +msgstr "" + +#: DlgEventLog.cpp:233 ViewMessages.cpp:118 +msgid "Time" +msgstr "" + +#: DlgEventLog.cpp:234 ViewMessages.cpp:119 +msgid "Message" +msgstr "" + +#: DlgEventLog.cpp:290 DlgEventLog.cpp:354 +msgid "&Show only this project" +msgstr "" + +#: DlgEventLog.cpp:294 +msgid "Copy &All" +msgstr "" + +#: DlgEventLog.cpp:296 DlgEventLog.cpp:300 ViewMessages.cpp:89 +msgid "Copy all the messages to the clipboard." +msgstr "" + +#: DlgEventLog.cpp:305 +msgid "Copy &Selected" +msgstr "" + +#: DlgEventLog.cpp:308 DlgEventLog.cpp:316 ViewMessages.cpp:97 +msgid "" +"Copy the selected messages to the clipboard. You can select multiple " +"messages by holding down the shift or command key while clicking on messages." +msgstr "" + +#: DlgEventLog.cpp:310 DlgEventLog.cpp:318 ViewMessages.cpp:99 +msgid "" +"Copy the selected messages to the clipboard. You can select multiple " +"messages by holding down the shift or control key while clicking on messages." +msgstr "" + +#: DlgEventLog.cpp:325 DlgItemProperties.cpp:67 +msgid "&Close" +msgstr "" + +#: DlgEventLog.cpp:334 sg_BoincSimpleFrame.cpp:798 sg_DlgPreferences.cpp:442 +#, c-format +msgid "Get help with %s" +msgstr "" + +#: DlgEventLog.cpp:348 +msgid "Show all &messages" +msgstr "" + +#: DlgEventLog.cpp:349 DlgEventLog.cpp:351 +msgid "Show messages for all projects" +msgstr "" + +#: DlgEventLog.cpp:355 DlgEventLog.cpp:357 +msgid "Show only the messages for the selected project" +msgstr "" + +#: DlgExitMessage.cpp:82 +#, c-format +msgid "%s - Exit Confirmation" +msgstr "" + +#: DlgExitMessage.cpp:130 +#, c-format +msgid "" +"You have requested to exit the %s,\n" +"which allows you to view and manage\n" +"the tasks running on your computer.\n" +"\n" +"If you also want to stop running the tasks,\n" +"choose from the following options:" +msgstr "" + +#: DlgExitMessage.cpp:135 +#, c-format +msgid "" +"This will shut down %s and its tasks until either the\n" +"%s or the %s screen saver is run again.\n" +"\n" +"In most cases, it is better just to close the %s window\n" +"rather than to exit the application; that will allow %s to run its\n" +"tasks at the times you selected in your preferences." +msgstr "" + +#: DlgExitMessage.cpp:153 +#, c-format +msgid "Stop running tasks when exiting the %s" +msgstr "" + +#: DlgExitMessage.cpp:165 +msgid "Remember this decision and do not show this dialog." +msgstr "" + +#: DlgExitMessage.cpp:178 DlgGenericMessage.cpp:125 DlgOptions.cpp:401 +#: DlgSelectComputer.cpp:168 wizardex.cpp:378 +msgid "&Cancel" +msgstr "" + +#: DlgGenericMessage.cpp:112 +msgid "Don't show this dialog again." +msgstr "" + +#: DlgItemProperties.cpp:168 DlgItemProperties.cpp:171 +#: DlgItemProperties.cpp:174 DlgItemProperties.cpp:177 +msgid "Don't fetch tasks for " +msgstr "" + +#: DlgItemProperties.cpp:168 +msgid "Project preference" +msgstr "" + +#: DlgItemProperties.cpp:171 +msgid "Account manager preference" +msgstr "" + +#: DlgItemProperties.cpp:174 +msgid "Project has no apps for " +msgstr "" + +#: DlgItemProperties.cpp:177 +msgid "Client configuration excludes " +msgstr "" + +#: DlgItemProperties.cpp:181 +msgid " work fetch deferred for" +msgstr "" + +#: DlgItemProperties.cpp:182 +msgid " work fetch deferral interval" +msgstr "" + +#: DlgItemProperties.cpp:213 +msgid "Properties of project " +msgstr "" + +#: DlgItemProperties.cpp:217 DlgOptions.cpp:218 +msgid "General" +msgstr "" + +#: DlgItemProperties.cpp:218 +msgid "Master URL" +msgstr "" + +#: DlgItemProperties.cpp:219 +msgid "User name" +msgstr "" + +#: DlgItemProperties.cpp:220 +msgid "Team name" +msgstr "" + +#: DlgItemProperties.cpp:221 ViewProjects.cpp:224 +msgid "Resource share" +msgstr "" + +#: DlgItemProperties.cpp:223 +msgid "Scheduler RPC deferred for" +msgstr "" + +#: DlgItemProperties.cpp:226 +msgid "File downloads deferred for" +msgstr "" + +#: DlgItemProperties.cpp:229 +msgid "File uploads deferred for" +msgstr "" + +#: DlgItemProperties.cpp:232 +msgid "Computer ID" +msgstr "" + +#: DlgItemProperties.cpp:234 +msgid "Non CPU intensive" +msgstr "" + +#: DlgItemProperties.cpp:234 DlgItemProperties.cpp:236 +#: DlgItemProperties.cpp:237 DlgItemProperties.cpp:239 +#: DlgItemProperties.cpp:242 DlgItemProperties.cpp:251 +#: DlgItemProperties.cpp:254 DlgItemProperties.cpp:257 +msgid "yes" +msgstr "" + +#: DlgItemProperties.cpp:236 +msgid "Suspended via GUI" +msgstr "" + +#: DlgItemProperties.cpp:236 DlgItemProperties.cpp:237 +msgid "no" +msgstr "" + +#: DlgItemProperties.cpp:237 +msgid "Don't request more work" +msgstr "" + +#: DlgItemProperties.cpp:239 +msgid "Scheduler call in progress" +msgstr "" + +#: DlgItemProperties.cpp:242 +msgid "Trickle-up pending" +msgstr "" + +#: DlgItemProperties.cpp:245 DlgItemProperties.cpp:247 +msgid "Host location" +msgstr "" + +#: DlgItemProperties.cpp:247 +msgid "default" +msgstr "" + +#: DlgItemProperties.cpp:251 +msgid "Added via account manager" +msgstr "" + +#: DlgItemProperties.cpp:254 +msgid "Remove when tasks done" +msgstr "" + +#: DlgItemProperties.cpp:257 +msgid "Ended" +msgstr "" + +#: DlgItemProperties.cpp:259 +msgid "Credit" +msgstr "" + +#: DlgItemProperties.cpp:260 +msgid "User" +msgstr "" + +#: DlgItemProperties.cpp:267 +msgid "Host" +msgstr "" + +#: DlgItemProperties.cpp:276 +msgid "Scheduling" +msgstr "" + +#: DlgItemProperties.cpp:277 +msgid "Scheduling priority" +msgstr "" + +#: DlgItemProperties.cpp:278 +msgid "CPU" +msgstr "" + +#: DlgItemProperties.cpp:302 +msgid "Duration correction factor" +msgstr "" + +#: DlgItemProperties.cpp:316 +msgid "Properties of task " +msgstr "" + +#: DlgItemProperties.cpp:328 ViewWork.cpp:238 +msgid "Application" +msgstr "" + +#: DlgItemProperties.cpp:329 ViewWork.cpp:239 +msgid "Name" +msgstr "" + +#: DlgItemProperties.cpp:330 +msgid "State" +msgstr "" + +#: DlgItemProperties.cpp:333 +msgid "Received" +msgstr "" + +#: DlgItemProperties.cpp:336 +msgid "Report deadline" +msgstr "" + +#: DlgItemProperties.cpp:338 +msgid "Resources" +msgstr "" + +#: DlgItemProperties.cpp:341 +msgid "Estimated computation size" +msgstr "" + +#: DlgItemProperties.cpp:344 +msgid "CPU time at last checkpoint" +msgstr "" + +#: DlgItemProperties.cpp:345 DlgItemProperties.cpp:360 +msgid "CPU time" +msgstr "" + +#: DlgItemProperties.cpp:347 DlgItemProperties.cpp:361 +msgid "Elapsed time" +msgstr "" + +#: DlgItemProperties.cpp:349 +msgid "Estimated time remaining" +msgstr "" + +#: DlgItemProperties.cpp:350 +msgid "Fraction done" +msgstr "" + +#: DlgItemProperties.cpp:351 +msgid "Virtual memory size" +msgstr "" + +#: DlgItemProperties.cpp:352 +msgid "Working set size" +msgstr "" + +#: DlgItemProperties.cpp:354 +msgid "Directory" +msgstr "" + +#: DlgItemProperties.cpp:357 +msgid "Process ID" +msgstr "" + +#: DlgItemProperties.cpp:427 ViewWork.cpp:1032 sg_TaskPanel.cpp:823 +msgid "Local: " +msgstr "" + +#: DlgOptions.cpp:129 DlgOptions.cpp:135 +msgid "Options" +msgstr "" + +#: DlgOptions.cpp:175 +msgid "Language:" +msgstr "" + +#: DlgOptions.cpp:182 +msgid "What language should BOINC use?" +msgstr "" + +#: DlgOptions.cpp:186 +msgid "Notice reminder interval:" +msgstr "" + +#: DlgOptions.cpp:193 +msgid "How often should BOINC remind you of new notices?" +msgstr "" + +#: DlgOptions.cpp:198 +msgid "Run Manager at login?" +msgstr "" + +#: DlgOptions.cpp:204 +msgid "Run the BOINC Manager when you log on." +msgstr "" + +#: DlgOptions.cpp:209 +msgid "Enable Manager exit dialog?" +msgstr "" + +#: DlgOptions.cpp:215 +msgid "Display the exit dialog when shutting down the Manager." +msgstr "" + +#: DlgOptions.cpp:226 +msgid "Dial-up and Virtual Private Network settings" +msgstr "" + +#: DlgOptions.cpp:240 +msgid "&Set Default" +msgstr "" + +#: DlgOptions.cpp:245 +msgid "&Clear Default" +msgstr "" + +#: DlgOptions.cpp:252 +msgid "Default Connection:" +msgstr "" + +#: DlgOptions.cpp:259 +msgid "Connections" +msgstr "" + +#: DlgOptions.cpp:268 +msgid "Connect via HTTP proxy server" +msgstr "" + +#: DlgOptions.cpp:272 +msgid "HTTP Proxy Server Configuration" +msgstr "" + +#: DlgOptions.cpp:280 DlgOptions.cpp:344 +msgid "Address:" +msgstr "" + +#: DlgOptions.cpp:288 DlgOptions.cpp:352 ProxyPage.cpp:340 ProxyPage.cpp:360 +msgid "Port:" +msgstr "" + +#: DlgOptions.cpp:296 DlgOptions.cpp:360 +msgid "Don't use proxy for:" +msgstr "" + +#: DlgOptions.cpp:303 DlgOptions.cpp:367 +msgid "Leave these blank if not needed" +msgstr "" + +#: DlgOptions.cpp:309 DlgOptions.cpp:373 ProxyPage.cpp:343 ProxyPage.cpp:363 +msgid "User Name:" +msgstr "" + +#: DlgOptions.cpp:317 DlgOptions.cpp:381 DlgSelectComputer.cpp:152 +#: ProxyPage.cpp:346 ProxyPage.cpp:366 +msgid "Password:" +msgstr "" + +#: DlgOptions.cpp:324 +msgid "HTTP Proxy" +msgstr "" + +#: DlgOptions.cpp:332 +msgid "Connect via SOCKS proxy server" +msgstr "" + +#: DlgOptions.cpp:336 +msgid "SOCKS Proxy Server Configuration" +msgstr "" + +#: DlgOptions.cpp:388 +msgid "SOCKS Proxy" +msgstr "" + +#: DlgOptions.cpp:586 +msgid "always" +msgstr "" + +#: DlgOptions.cpp:587 +msgid "1 hour" +msgstr "" + +#: DlgOptions.cpp:588 +msgid "6 hours" +msgstr "" + +#: DlgOptions.cpp:589 +msgid "1 day" +msgstr "" + +#: DlgOptions.cpp:590 +msgid "1 week" +msgstr "" + +#: DlgOptions.cpp:591 +msgid "never" +msgstr "" + +#: DlgOptions.cpp:688 +#, c-format +msgid "%s - Language Selection" +msgstr "" + +#: DlgOptions.cpp:695 +#, c-format +msgid "" +"The %s's language has been changed. In order for this change to take " +"effect, you must restart the %s." +msgstr "" + +#: DlgSelectComputer.cpp:91 +#, c-format +msgid "%s - Select Computer" +msgstr "" + +#: DlgSelectComputer.cpp:125 +#, c-format +msgid "" +"Another instance of %s is already running \n" +"on this computer. Please select a client to monitor." +msgstr "" + +#: DlgSelectComputer.cpp:143 +msgid "Host name:" +msgstr "" + +#: Localization.cpp:31 Localization.cpp:69 +msgid "Message boards" +msgstr "" + +#: Localization.cpp:33 +msgid "Correspond with other users on the SETI@home message boards" +msgstr "" + +#: Localization.cpp:37 +msgid "Ask questions and report problems" +msgstr "" + +#: Localization.cpp:39 Localization.cpp:81 Localization.cpp:111 +#: Localization.cpp:129 +msgid "Your account" +msgstr "" + +#: Localization.cpp:41 Localization.cpp:87 Localization.cpp:113 +msgid "View your account information and credit totals" +msgstr "" + +#: Localization.cpp:43 +msgid "Your preferences" +msgstr "" + +#: Localization.cpp:45 +msgid "View and modify your SETI@home account profile and preferences" +msgstr "" + +#: Localization.cpp:47 Localization.cpp:89 +msgid "Your results" +msgstr "" + +#: Localization.cpp:49 Localization.cpp:91 +msgid "View your last week (or more) of computational results and work" +msgstr "" + +#: Localization.cpp:51 Localization.cpp:93 +msgid "Your computers" +msgstr "" + +#: Localization.cpp:53 +msgid "View a listing of all the computers on which you are running SETI@Home" +msgstr "" + +#: Localization.cpp:55 Localization.cpp:97 +msgid "Your team" +msgstr "" + +#: Localization.cpp:57 Localization.cpp:99 +msgid "View information about your team" +msgstr "" + +#: Localization.cpp:61 +msgid "Common questions" +msgstr "" + +#: Localization.cpp:63 +msgid "Read the Einstein@Home Frequently Asked Question list" +msgstr "" + +#: Localization.cpp:65 +msgid "Screensaver info" +msgstr "" + +#: Localization.cpp:67 +msgid "Read a detailed description of the Einstein@Home screensaver" +msgstr "" + +#: Localization.cpp:71 +msgid "" +"Correspond with admins and other users on the Einstein@Home message boards" +msgstr "" + +#: Localization.cpp:73 +msgid "Einstein status" +msgstr "" + +#: Localization.cpp:75 +msgid "Current status of the Einstein@Home server" +msgstr "" + +#: Localization.cpp:77 +msgid "Report problems" +msgstr "" + +#: Localization.cpp:79 +msgid "A link to the Einstein@Home problems and bug reports message board" +msgstr "" + +#: Localization.cpp:83 +msgid "View and modify your Einstein@Home account profile and preferences" +msgstr "" + +#: Localization.cpp:85 +msgid "Account summary" +msgstr "" + +#: Localization.cpp:95 +msgid "" +"View a listing of all the computers on which you are running Einstein@Home" +msgstr "" + +#: Localization.cpp:101 +msgid "LIGO project" +msgstr "" + +#: Localization.cpp:103 +msgid "" +"The home page of the Laser Interferometer Gravitational-wave Observatory " +"(LIGO) project" +msgstr "" + +#: Localization.cpp:105 +msgid "GEO-600 project" +msgstr "" + +#: Localization.cpp:107 +msgid "The home page of the GEO-600 project" +msgstr "" + +#: Localization.cpp:115 Localization.cpp:133 ViewProjects.cpp:221 +#: ViewStatistics.cpp:465 +msgid "Team" +msgstr "" + +#: Localization.cpp:117 +msgid "Info about your Team" +msgstr "" + +#: Localization.cpp:123 +msgid "Get help for climateprediction.net" +msgstr "" + +#: Localization.cpp:125 +msgid "News" +msgstr "" + +#: Localization.cpp:127 +msgid "climateprediction.net News" +msgstr "" + +#: Localization.cpp:131 +msgid "View your account information, credits, and trickles" +msgstr "" + +#: Localization.cpp:135 +msgid "Info about your team" +msgstr "" + +#: Localization.cpp:141 +msgid "Search for help in our help system" +msgstr "" + +#: Localization.cpp:143 +msgid "Global Statistics" +msgstr "" + +#: Localization.cpp:145 +msgid "Summary statistics for World Community Grid" +msgstr "" + +#: Localization.cpp:147 +msgid "My Grid" +msgstr "" + +#: Localization.cpp:149 +msgid "Your statistics and settings" +msgstr "" + +#: Localization.cpp:151 +msgid "Device Profiles" +msgstr "" + +#: Localization.cpp:153 +msgid "Update your device settings" +msgstr "" + +#: Localization.cpp:155 +msgid "Research" +msgstr "" + +#: Localization.cpp:157 +msgid "Learn about the projects hosted at World Community Grid" +msgstr "" + +#: MainDocument.cpp:583 +msgid "Starting client" +msgstr "" + +#: MainDocument.cpp:591 +msgid "Connecting to client" +msgstr "" + +#: MainDocument.cpp:1195 +msgid "Retrieving system state; please wait..." +msgstr "" + +#: MainDocument.cpp:1816 +msgid "Missing application" +msgstr "" + +#: MainDocument.cpp:1817 +msgid "" +"Please download and install the CoRD application from http://cord." +"sourceforge.net" +msgstr "" + +#: MainDocument.cpp:2432 +msgid "on batteries" +msgstr "" + +#: MainDocument.cpp:2433 +msgid "computer is in use" +msgstr "" + +#: MainDocument.cpp:2434 +msgid "user request" +msgstr "" + +#: MainDocument.cpp:2435 +msgid "time of day" +msgstr "" + +#: MainDocument.cpp:2436 +msgid "CPU benchmarks in progress" +msgstr "" + +#: MainDocument.cpp:2437 +msgid "need disk space - check preferences" +msgstr "" + +#: MainDocument.cpp:2438 +msgid "computer is not in use" +msgstr "" + +#: MainDocument.cpp:2439 +msgid "starting up" +msgstr "" + +#: MainDocument.cpp:2440 +msgid "an exclusive app is running" +msgstr "" + +#: MainDocument.cpp:2441 +msgid "CPU is busy" +msgstr "" + +#: MainDocument.cpp:2442 +msgid "network bandwidth limit exceeded" +msgstr "" + +#: MainDocument.cpp:2443 +msgid "requested by operating system" +msgstr "" + +#: MainDocument.cpp:2445 +msgid "unknown reason" +msgstr "" + +#: MainDocument.cpp:2467 +msgid "GPU missing, " +msgstr "" + +#: MainDocument.cpp:2474 +msgid "New" +msgstr "" + +#: MainDocument.cpp:2478 +msgid "Download failed" +msgstr "" + +#: MainDocument.cpp:2480 +msgid "Downloading" +msgstr "" + +#: MainDocument.cpp:2482 MainDocument.cpp:2552 +msgid " (suspended - " +msgstr "" + +#: MainDocument.cpp:2490 +msgid "Project suspended by user" +msgstr "" + +#: MainDocument.cpp:2492 +msgid "Task suspended by user" +msgstr "" + +#: MainDocument.cpp:2494 +msgid "Suspended - " +msgstr "" + +#: MainDocument.cpp:2500 +msgid "GPU suspended - " +msgstr "" + +#: MainDocument.cpp:2507 +msgid "Waiting for memory" +msgstr "" + +#: MainDocument.cpp:2509 +msgid "Waiting for shared memory" +msgstr "" + +#: MainDocument.cpp:2512 +msgid "Running, high priority" +msgstr "" + +#: MainDocument.cpp:2514 +msgid "Running" +msgstr "" + +#: MainDocument.cpp:2517 +msgid " (non-CPU-intensive)" +msgstr "" + +#: MainDocument.cpp:2520 +msgid "Waiting to run" +msgstr "" + +#: MainDocument.cpp:2522 MainDocument.cpp:2528 +msgid "Ready to start" +msgstr "" + +#: MainDocument.cpp:2532 +msgid " (Scheduler wait: " +msgstr "" + +#: MainDocument.cpp:2536 +msgid " (Scheduler wait)" +msgstr "" + +#: MainDocument.cpp:2540 +msgid " (Waiting for network access)" +msgstr "" + +#: MainDocument.cpp:2544 +msgid "Computation error" +msgstr "" + +#: MainDocument.cpp:2548 +msgid "Upload failed" +msgstr "" + +#: MainDocument.cpp:2550 +msgid "Uploading" +msgstr "" + +#: MainDocument.cpp:2561 +msgid "Aborted by user" +msgstr "" + +#: MainDocument.cpp:2564 +msgid "Aborted by project" +msgstr "" + +#: MainDocument.cpp:2567 +msgid "Aborted: not started by deadline" +msgstr "" + +#: MainDocument.cpp:2570 +msgid "Aborted: disk limit exceeded" +msgstr "" + +#: MainDocument.cpp:2573 +msgid "Aborted: run time limit exceeded" +msgstr "" + +#: MainDocument.cpp:2576 +msgid "Aborted: memory limit exceeded" +msgstr "" + +#: MainDocument.cpp:2579 +msgid "Aborted" +msgstr "" + +#: MainDocument.cpp:2584 +msgid "Acknowledged" +msgstr "" + +#: MainDocument.cpp:2586 +msgid "Ready to report" +msgstr "" + +#: MainDocument.cpp:2588 +#, c-format +msgid "Error: invalid state '%d'" +msgstr "" + +#: NoInternetConnectionPage.cpp:179 +msgid "No Internet connection" +msgstr "" + +#: NoInternetConnectionPage.cpp:182 +msgid "Please connect to the Internet and try again." +msgstr "" + +#: NotDetectedPage.cpp:181 +msgid "Project not found" +msgstr "" + +#: NotDetectedPage.cpp:184 +msgid "" +"The URL you supplied is not that of a BOINC-based project.\n" +"\n" +"Please check the URL and try again." +msgstr "" + +#: NotDetectedPage.cpp:188 +msgid "Account manager not found" +msgstr "" + +#: NotDetectedPage.cpp:191 +msgid "" +"The URL you supplied is not that of a BOINC-based account\n" +"manager.\n" +"\n" +"Please check the URL and try again." +msgstr "" + +#: NotFoundPage.cpp:181 +msgid "Login Failed." +msgstr "" + +#: NotFoundPage.cpp:185 +msgid "Check the username and password, and try again." +msgstr "" + +#: NotFoundPage.cpp:189 +msgid "Check the email address and password, and try again." +msgstr "" + +#: NoticeListCtrl.cpp:222 +msgid "more..." +msgstr "" + +#: ProjectInfoPage.cpp:477 ProjectInfoPage.cpp:778 ProjectInfoPage.cpp:782 +msgid "All" +msgstr "" + +#: ProjectInfoPage.cpp:615 +msgid "Choose a project" +msgstr "" + +#: ProjectInfoPage.cpp:619 +msgid "To choose a project, click its name or type its URL below." +msgstr "" + +#: ProjectInfoPage.cpp:623 +msgid "Categories:" +msgstr "" + +#: ProjectInfoPage.cpp:627 sg_ProjectPanel.cpp:89 +msgid "Projects:" +msgstr "" + +#: ProjectInfoPage.cpp:631 +msgid "Project details" +msgstr "" + +#: ProjectInfoPage.cpp:635 +msgid "Research area:" +msgstr "" + +#: ProjectInfoPage.cpp:639 +msgid "Organization:" +msgstr "" + +#: ProjectInfoPage.cpp:643 +msgid "Web site:" +msgstr "" + +#: ProjectInfoPage.cpp:647 +msgid "Supported systems:" +msgstr "" + +#: ProjectInfoPage.cpp:651 +msgid "Project URL:" +msgstr "" + +#: ProjectInfoPage.cpp:826 +msgid "" +"This project may not have work for your type of computer. Do you want to " +"add it anyway?" +msgstr "" + +#: ProjectInfoPage.cpp:850 +msgid "You already added this project. Please choose a different project." +msgstr "" + +#: ProjectProcessingPage.cpp:321 +msgid "Communicating with project." +msgstr "" + +#: ProjectProcessingPage.cpp:509 +msgid "Required files not found on the server." +msgstr "" + +#: ProjectProcessingPage.cpp:512 ProjectProcessingPage.cpp:574 +msgid "An internal server error has occurred." +msgstr "" + +#: ProjectPropertiesPage.cpp:334 +msgid "" +"Communicating with project\n" +"Please wait..." +msgstr "" + +#: ProxyInfoPage.cpp:195 +msgid "Network communication failure" +msgstr "" + +#: ProxyInfoPage.cpp:199 +msgid "" +"The World Community Grid - BOINC software failed to communicate\n" +"over the Internet. The most likely reasons are:\n" +"\n" +"1) Connectivity problem. Check your network or modem connection\n" +"and then click Back to try again.\n" +"\n" +"2) Personal firewall software is blocking the World Community\n" +"Grid - BOINC software. Configure your personal firewall to let\n" +"BOINC and BOINC Manager communicate on port 80 and port 443,\n" +"then click Back to try again.\n" +"\n" +"3) You are using a proxy server.\n" +"Click Next to configure BOINC's proxy settings." +msgstr "" + +#: ProxyInfoPage.cpp:203 +msgid "" +"BOINC failed to communicate on the Internet.\n" +"The most likely reasons are:\n" +"\n" +"1) Connectivity problem. Check your network\n" +"or modem connection and then click Back to try again.\n" +"\n" +"2) Personal firewall software is blocking BOINC.\n" +"Configure your personal firewall to let BOINC and\n" +"BOINC Manager communicate on port 80,\n" +"then click Back to try again.\n" +"\n" +"3) You are using a proxy server.\n" +"Click Next to configure BOINC's proxy settings." +msgstr "" + +#: ProxyPage.cpp:331 +msgid "Proxy configuration" +msgstr "" + +#: ProxyPage.cpp:334 +msgid "HTTP proxy" +msgstr "" + +#: ProxyPage.cpp:337 ProxyPage.cpp:357 +msgid "Server:" +msgstr "" + +#: ProxyPage.cpp:350 +msgid "Autodetect" +msgstr "" + +#: ProxyPage.cpp:354 +msgid "SOCKS proxy" +msgstr "" + +#: TermsOfUsePage.cpp:218 +msgid "Terms of Use" +msgstr "" + +#: TermsOfUsePage.cpp:222 +msgid "Please read the following terms of use:" +msgstr "" + +#: TermsOfUsePage.cpp:231 +msgid "I agree to the terms of use." +msgstr "" + +#: TermsOfUsePage.cpp:237 +msgid "I do not agree to the terms of use." +msgstr "" + +#: UnavailablePage.cpp:183 +msgid "Project temporarily unavailable" +msgstr "" + +#: UnavailablePage.cpp:186 +msgid "" +"The project is temporarily unavailable.\n" +"\n" +"Please try again later." +msgstr "" + +#: UnavailablePage.cpp:190 +msgid "Account manager temporarily unavailable" +msgstr "" + +#: UnavailablePage.cpp:193 +msgid "" +"The account manager is temporarily unavailable.\n" +"\n" +"Please try again later." +msgstr "" + +#: ValidateAccountKey.cpp:68 +msgid "Please specify an account key to continue." +msgstr "" + +#: ValidateAccountKey.cpp:71 +msgid "Invalid Account Key; please enter a valid Account Key" +msgstr "" + +#: ValidateAccountKey.cpp:82 ValidateEmailAddress.cpp:86 +msgid "Validation conflict" +msgstr "" + +#: ValidateEmailAddress.cpp:72 +msgid "Please specify an email address" +msgstr "" + +#: ValidateEmailAddress.cpp:75 +msgid "Invalid email address; please enter a valid email address" +msgstr "" + +#: ValidateURL.cpp:69 +msgid "Missing URL" +msgstr "" + +#: ValidateURL.cpp:70 +msgid "" +"Please specify a URL.\n" +"For example:\n" +"http://www.example.com/" +msgstr "" + +#: ValidateURL.cpp:83 ValidateURL.cpp:87 ValidateURL.cpp:91 +#: ValidateURL.cpp:103 ValidateURL.cpp:107 ValidateURL.cpp:110 +msgid "Invalid URL" +msgstr "" + +#: ValidateURL.cpp:84 ValidateURL.cpp:88 ValidateURL.cpp:92 +msgid "" +"Please specify a valid URL.\n" +"For example:\n" +"http://boincproject.example.com" +msgstr "" + +#: ValidateURL.cpp:104 ValidateURL.cpp:108 +#, c-format +msgid "'%s' does not contain a valid host name." +msgstr "" + +#: ValidateURL.cpp:111 +#, c-format +msgid "'%s' does not contain a valid path." +msgstr "" + +#: ViewMessages.cpp:84 ViewProjects.cpp:170 ViewStatistics.cpp:1978 +#: ViewTransfers.cpp:160 ViewWork.cpp:183 +msgid "Commands" +msgstr "" + +#: ViewMessages.cpp:88 +msgid "Copy all messages" +msgstr "" + +#: ViewMessages.cpp:95 +msgid "Copy selected messages" +msgstr "" + +#: ViewMessages.cpp:106 ViewMessages.cpp:502 +msgid "Show only this project" +msgstr "" + +#: ViewMessages.cpp:107 ViewMessages.cpp:503 +msgid "Show only the messages for the selected project." +msgstr "" + +#: ViewMessages.cpp:164 +msgid "Messages" +msgstr "" + +#: ViewMessages.cpp:187 +msgid "Copying all messages to the clipboard..." +msgstr "" + +#: ViewMessages.cpp:223 +msgid "Copying selected messages to the clipboard..." +msgstr "" + +#: ViewMessages.cpp:286 +msgid "Filtering messages..." +msgstr "" + +#: ViewMessages.cpp:494 +msgid "Show all messages" +msgstr "" + +#: ViewMessages.cpp:495 +msgid "Show messages for all projects." +msgstr "" + +#: ViewNotices.cpp:58 sg_DlgMessages.cpp:124 +msgid "Fetching notices; please wait..." +msgstr "" + +#: ViewNotices.cpp:65 sg_DlgMessages.cpp:132 +msgid "There are no notices at this time." +msgstr "" + +#: ViewNotices.cpp:99 sg_BoincSimpleFrame.cpp:776 +msgid "Notices" +msgstr "" + +#: ViewProjects.cpp:174 sg_ProjectCommandPopup.cpp:61 +msgid "Update" +msgstr "" + +#: ViewProjects.cpp:175 sg_ProjectCommandPopup.cpp:62 +msgid "" +"Report all completed tasks, get latest credit, get latest preferences, and " +"possibly get more tasks." +msgstr "" + +#: ViewProjects.cpp:181 ViewProjects.cpp:722 ViewWork.cpp:208 ViewWork.cpp:801 +#: sg_BoincSimpleFrame.cpp:757 sg_ProjectCommandPopup.cpp:67 +#: sg_ProjectCommandPopup.cpp:113 sg_TaskCommandPopup.cpp:66 +#: sg_TaskCommandPopup.cpp:106 +msgid "Suspend" +msgstr "" + +#: ViewProjects.cpp:182 ViewProjects.cpp:722 sg_ProjectCommandPopup.cpp:68 +#: sg_ProjectCommandPopup.cpp:114 +msgid "Suspend tasks for this project." +msgstr "" + +#: ViewProjects.cpp:188 ViewProjects.cpp:741 sg_ProjectCommandPopup.cpp:73 +#: sg_ProjectCommandPopup.cpp:121 +msgid "No new tasks" +msgstr "" + +#: ViewProjects.cpp:189 sg_ProjectCommandPopup.cpp:74 +msgid "Don't get new tasks for this project." +msgstr "" + +#: ViewProjects.cpp:195 sg_ProjectCommandPopup.cpp:79 +msgid "Reset project" +msgstr "" + +#: ViewProjects.cpp:196 sg_ProjectCommandPopup.cpp:80 +msgid "" +"Delete all files and tasks associated with this project, and get new tasks. " +"You can update the project first to report any completed tasks." +msgstr "" + +#: ViewProjects.cpp:203 sg_ProjectCommandPopup.cpp:86 +msgid "" +"Remove this project. Tasks in progress will be lost (use 'Update' first to " +"report any completed tasks)." +msgstr "" + +#: ViewProjects.cpp:209 ViewWork.cpp:222 sg_ProjectCommandPopup.cpp:91 +#: sg_TaskCommandPopup.cpp:78 +msgid "Properties" +msgstr "" + +#: ViewProjects.cpp:210 sg_ProjectCommandPopup.cpp:92 +msgid "Show project details." +msgstr "" + +#: ViewProjects.cpp:220 ViewStatistics.cpp:450 +msgid "Account" +msgstr "" + +#: ViewProjects.cpp:222 +msgid "Work done" +msgstr "" + +#: ViewProjects.cpp:223 +msgid "Avg. work done" +msgstr "" + +#: ViewProjects.cpp:225 ViewTransfers.cpp:188 ViewWork.cpp:234 +msgid "Status" +msgstr "" + +#: ViewProjects.cpp:250 +msgid "Projects" +msgstr "" + +#: ViewProjects.cpp:302 +msgid "Updating project..." +msgstr "" + +#: ViewProjects.cpp:344 +msgid "Resuming project..." +msgstr "" + +#: ViewProjects.cpp:348 +msgid "Suspending project..." +msgstr "" + +#: ViewProjects.cpp:385 +msgid "Telling project to allow additional task downloads..." +msgstr "" + +#: ViewProjects.cpp:389 +msgid "Telling project to not fetch any additional tasks..." +msgstr "" + +#: ViewProjects.cpp:425 +msgid "Resetting project..." +msgstr "" + +#: ViewProjects.cpp:438 sg_ProjectCommandPopup.cpp:214 +#, c-format +msgid "Are you sure you want to reset project '%s'?" +msgstr "" + +#: ViewProjects.cpp:444 sg_ProjectCommandPopup.cpp:220 +msgid "Reset Project" +msgstr "" + +#: ViewProjects.cpp:483 +msgid "Removing project..." +msgstr "" + +#: ViewProjects.cpp:496 sg_ProjectCommandPopup.cpp:251 +#, c-format +msgid "Are you sure you want to remove project '%s'?" +msgstr "" + +#: ViewProjects.cpp:502 sg_ProjectCommandPopup.cpp:257 +msgid "Remove Project" +msgstr "" + +#: ViewProjects.cpp:543 ViewWork.cpp:599 +msgid "Launching browser..." +msgstr "" + +#: ViewProjects.cpp:718 sg_ProjectCommandPopup.cpp:111 +msgid "Resume tasks for this project." +msgstr "" + +#: ViewProjects.cpp:737 sg_ProjectCommandPopup.cpp:118 +msgid "Allow new tasks" +msgstr "" + +#: ViewProjects.cpp:737 sg_ProjectCommandPopup.cpp:119 +msgid "Allow fetching new tasks for this project." +msgstr "" + +#: ViewProjects.cpp:741 sg_ProjectCommandPopup.cpp:122 +msgid "Don't fetch new tasks for this project." +msgstr "" + +#: ViewProjects.cpp:1058 +msgid "Requested by user" +msgstr "" + +#: ViewProjects.cpp:1059 +msgid "To fetch work" +msgstr "" + +#: ViewProjects.cpp:1060 +msgid "To report completed tasks" +msgstr "" + +#: ViewProjects.cpp:1061 +msgid "To send trickle-up message" +msgstr "" + +#: ViewProjects.cpp:1062 +msgid "Requested by account manager" +msgstr "" + +#: ViewProjects.cpp:1063 +msgid "Project initialization" +msgstr "" + +#: ViewProjects.cpp:1064 +msgid "Requested by project" +msgstr "" + +#: ViewProjects.cpp:1065 +msgid "Unknown reason" +msgstr "" + +#: ViewProjects.cpp:1079 +msgid "Suspended by user" +msgstr "" + +#: ViewProjects.cpp:1082 +msgid "Won't get new tasks" +msgstr "" + +#: ViewProjects.cpp:1085 +msgid "Project ended - OK to remove" +msgstr "" + +#: ViewProjects.cpp:1088 +msgid "Will remove when tasks done" +msgstr "" + +#: ViewProjects.cpp:1091 +msgid "Scheduler request pending" +msgstr "" + +#: ViewProjects.cpp:1097 +msgid "Scheduler request in progress" +msgstr "" + +#: ViewProjects.cpp:1100 +msgid "Trickle up message pending" +msgstr "" + +#: ViewProjects.cpp:1106 +msgid "Communication deferred " +msgstr "" + +#: ViewResources.cpp:62 +msgid "Total disk usage" +msgstr "" + +#: ViewResources.cpp:83 +msgid "Disk usage by BOINC projects" +msgstr "" + +#: ViewResources.cpp:116 +msgid "Disk" +msgstr "" + +#: ViewResources.cpp:249 +msgid "no projects: 0 bytes used" +msgstr "" + +#: ViewResources.cpp:286 +msgid "used by BOINC: " +msgstr "" + +#: ViewResources.cpp:296 +msgid "free, available to BOINC: " +msgstr "" + +#: ViewResources.cpp:306 +msgid "free, not available to BOINC: " +msgstr "" + +#: ViewResources.cpp:316 +msgid "free: " +msgstr "" + +#: ViewResources.cpp:326 +msgid "used by other programs: " +msgstr "" + +#: ViewStatistics.cpp:1205 +msgid "User Total" +msgstr "" + +#: ViewStatistics.cpp:1206 +msgid "User Average" +msgstr "" + +#: ViewStatistics.cpp:1207 +msgid "Host Total" +msgstr "" + +#: ViewStatistics.cpp:1208 +msgid "Host Average" +msgstr "" + +#: ViewStatistics.cpp:1355 +#, c-format +msgid "Last update: %.0f days ago" +msgstr "" + +#: ViewStatistics.cpp:1982 +msgid "Show user total" +msgstr "" + +#: ViewStatistics.cpp:1983 +msgid "Show total credit for user" +msgstr "" + +#: ViewStatistics.cpp:1989 +msgid "Show user average" +msgstr "" + +#: ViewStatistics.cpp:1990 +msgid "Show average credit for user" +msgstr "" + +#: ViewStatistics.cpp:1996 +msgid "Show host total" +msgstr "" + +#: ViewStatistics.cpp:1997 +msgid "Show total credit for host" +msgstr "" + +#: ViewStatistics.cpp:2003 +msgid "Show host average" +msgstr "" + +#: ViewStatistics.cpp:2004 +msgid "Show average credit for host" +msgstr "" + +#: ViewStatistics.cpp:2013 +msgid "< &Previous project" +msgstr "" + +#: ViewStatistics.cpp:2014 +msgid "Show chart for previous project" +msgstr "" + +#: ViewStatistics.cpp:2019 +msgid "&Next project >" +msgstr "" + +#: ViewStatistics.cpp:2020 +msgid "Show chart for next project" +msgstr "" + +#: ViewStatistics.cpp:2026 ViewStatistics.cpp:2416 +msgid "Hide project list" +msgstr "" + +#: ViewStatistics.cpp:2027 ViewStatistics.cpp:2416 +msgid "Use entire area for graphs" +msgstr "" + +#: ViewStatistics.cpp:2032 +msgid "Mode view" +msgstr "" + +#: ViewStatistics.cpp:2036 +msgid "One project" +msgstr "" + +#: ViewStatistics.cpp:2037 +msgid "Show one chart with selected project" +msgstr "" + +#: ViewStatistics.cpp:2043 +msgid "All projects (separate)" +msgstr "" + +#: ViewStatistics.cpp:2044 +msgid "Show all projects, one chart per project" +msgstr "" + +#: ViewStatistics.cpp:2050 +msgid "All projects (together)" +msgstr "" + +#: ViewStatistics.cpp:2051 +msgid "Show one chart with all projects" +msgstr "" + +#: ViewStatistics.cpp:2057 +msgid "All projects (sum)" +msgstr "" + +#: ViewStatistics.cpp:2058 +msgid "Show one chart with sum of projects" +msgstr "" + +#: ViewStatistics.cpp:2079 +msgid "Statistics" +msgstr "" + +#: ViewStatistics.cpp:2103 ViewStatistics.cpp:2124 ViewStatistics.cpp:2145 +#: ViewStatistics.cpp:2167 ViewStatistics.cpp:2188 ViewStatistics.cpp:2209 +#: ViewStatistics.cpp:2230 ViewStatistics.cpp:2251 ViewStatistics.cpp:2272 +#: ViewStatistics.cpp:2296 +msgid "Updating charts..." +msgstr "" + +#: ViewStatistics.cpp:2420 +msgid "Show project list" +msgstr "" + +#: ViewStatistics.cpp:2420 +msgid "Uses smaller area for graphs" +msgstr "" + +#: ViewTransfers.cpp:164 +msgid "Retry Now" +msgstr "" + +#: ViewTransfers.cpp:165 +msgid "Retry the file transfer now" +msgstr "" + +#: ViewTransfers.cpp:171 +msgid "Abort Transfer" +msgstr "" + +#: ViewTransfers.cpp:172 +msgid "Abort this file transfer. You won't get credit for the task." +msgstr "" + +#: ViewTransfers.cpp:183 +msgid "File" +msgstr "" + +#: ViewTransfers.cpp:184 ViewWork.cpp:233 +msgid "Progress" +msgstr "" + +#: ViewTransfers.cpp:185 +msgid "Size" +msgstr "" + +#: ViewTransfers.cpp:186 +msgid "Elapsed Time" +msgstr "" + +#: ViewTransfers.cpp:187 +msgid "Speed" +msgstr "" + +#: ViewTransfers.cpp:213 +msgid "Transfers" +msgstr "" + +#: ViewTransfers.cpp:280 +msgid "Network activity is suspended - " +msgstr "" + +#: ViewTransfers.cpp:282 +msgid "" +".\n" +"You can enable it using the Activity menu." +msgstr "" + +#: ViewTransfers.cpp:285 +msgid "BOINC" +msgstr "" + +#: ViewTransfers.cpp:292 +msgid "Retrying transfer now..." +msgstr "" + +#: ViewTransfers.cpp:330 +msgid "Aborting transfer..." +msgstr "" + +#: ViewTransfers.cpp:343 +#, c-format +msgid "" +"Are you sure you want to abort this file transfer '%s'?\n" +"NOTE: Aborting a transfer will invalidate a task and you\n" +"will not receive credit for it." +msgstr "" + +#: ViewTransfers.cpp:349 +msgid "Abort File Transfer" +msgstr "" + +#: ViewTransfers.cpp:780 +msgid "Upload" +msgstr "" + +#: ViewTransfers.cpp:780 +msgid "Download" +msgstr "" + +#: ViewTransfers.cpp:784 +msgid "retry in " +msgstr "" + +#: ViewTransfers.cpp:786 +msgid "failed" +msgstr "" + +#: ViewTransfers.cpp:789 +msgid "suspended" +msgstr "" + +#: ViewTransfers.cpp:794 +msgid "active" +msgstr "" + +#: ViewTransfers.cpp:796 +msgid "pending" +msgstr "" + +#: ViewTransfers.cpp:803 +msgid " (project backoff: " +msgstr "" + +#: ViewWork.cpp:187 ViewWork.cpp:777 +msgid "Show active tasks" +msgstr "" + +#: ViewWork.cpp:188 ViewWork.cpp:778 +msgid "Show only active tasks." +msgstr "" + +#: ViewWork.cpp:194 sg_TaskCommandPopup.cpp:60 +msgid "Show graphics" +msgstr "" + +#: ViewWork.cpp:195 sg_TaskCommandPopup.cpp:61 +msgid "Show application graphics in a window." +msgstr "" + +#: ViewWork.cpp:201 +msgid "Show VM Console" +msgstr "" + +#: ViewWork.cpp:202 +msgid "Show VM Console in a window." +msgstr "" + +#: ViewWork.cpp:209 +msgid "Suspend work for this result." +msgstr "" + +#: ViewWork.cpp:215 sg_TaskCommandPopup.cpp:72 +msgid "Abort" +msgstr "" + +#: ViewWork.cpp:216 +msgid "Abandon work on the result. You will get no credit for it." +msgstr "" + +#: ViewWork.cpp:223 sg_TaskCommandPopup.cpp:79 +msgid "Show task details." +msgstr "" + +#: ViewWork.cpp:235 +msgid "Elapsed" +msgstr "" + +#: ViewWork.cpp:236 +msgid "Remaining (estimated)" +msgstr "" + +#: ViewWork.cpp:237 +msgid "Deadline" +msgstr "" + +#: ViewWork.cpp:264 +msgid "Tasks" +msgstr "" + +#: ViewWork.cpp:357 +msgid "Resuming task..." +msgstr "" + +#: ViewWork.cpp:360 +msgid "Suspending task..." +msgstr "" + +#: ViewWork.cpp:389 +msgid "Showing graphics for task..." +msgstr "" + +#: ViewWork.cpp:426 +msgid "Showing VM console for task..." +msgstr "" + +#: ViewWork.cpp:479 +#, c-format +msgid "" +"Are you sure you want to abort this task '%s'?\n" +"(Progress: %s, Status: %s)" +msgstr "" + +#: ViewWork.cpp:485 +#, c-format +msgid "Are you sure you want to abort these %d tasks?" +msgstr "" + +#: ViewWork.cpp:490 sg_TaskCommandPopup.cpp:256 +msgid "Abort task" +msgstr "" + +#: ViewWork.cpp:499 +msgid "Aborting task..." +msgstr "" + +#: ViewWork.cpp:771 +msgid "Show all tasks" +msgstr "" + +#: ViewWork.cpp:772 +msgid "Show all tasks." +msgstr "" + +#: ViewWork.cpp:796 sg_TaskCommandPopup.cpp:103 +msgid "Resume work for this task." +msgstr "" + +#: ViewWork.cpp:802 sg_TaskCommandPopup.cpp:107 +msgid "Suspend work for this task." +msgstr "" + +#: WelcomePage.cpp:284 +msgid "Add project or account manager" +msgstr "" + +#: WelcomePage.cpp:288 +msgid "Add project or use BOINC Account Manager" +msgstr "" + +#: WelcomePage.cpp:297 +#, c-format +msgid "" +"If possible, add projects at the\n" +"%s web site.\n" +"\n" +"Projects added via this wizard will not be\n" +"listed on or managed via %s." +msgstr "" + +#: WelcomePage.cpp:313 +msgid "" +"There are over 30 BOINC-based projects\n" +"doing research in many areas of science,\n" +"and you can volunteer for as many of them as you like.\n" +"You can add a project directly,\n" +"or use an 'Account Manager' web site to select projects." +msgstr "" + +#: WelcomePage.cpp:325 +msgid "" +"You have chosen to add a new volunteer computing project or change which " +"projects\n" +"you contribute to.\n" +"\n" +"Some of these projects are run and managed by World Community Grid, while " +"others\n" +"are run and managed by other researchers or organizations. The BOINC " +"software\n" +"can divide your spare processing power among any combination of projects.\n" +"\n" +"Alternatively, if you have registered with a BOINC Account Manager, you can " +"use\n" +"this to choose which projects to support.\n" +"\n" +"Please choose which type of change you would like to make:\n" +msgstr "" + +#: WelcomePage.cpp:339 +msgid "Use a BOINC Account Manager" +msgstr "" + +#: WelcomePage.cpp:352 +msgid "To continue, click Next." +msgstr "" + +#: WelcomePage.cpp:358 +msgid "Add or change your World Community Grid projects" +msgstr "" + +#: WelcomePage.cpp:361 +msgid "Add projects run by other researchers or organizations" +msgstr "" + +#: WizardAttach.cpp:634 +msgid "Do you really want to cancel?" +msgstr "" + +#: WizardAttach.cpp:635 +msgid "Question" +msgstr "" + +#: sg_BoincSimpleFrame.cpp:149 +msgid "Advanced View...\tCtrl+Shift+A" +msgstr "" + +#: sg_BoincSimpleFrame.cpp:150 +msgid "Display the advanced graphical interface." +msgstr "" + +#: sg_BoincSimpleFrame.cpp:157 +msgid "Skin" +msgstr "" + +#: sg_BoincSimpleFrame.cpp:159 +msgid "Select the appearance of the user interface." +msgstr "" + +#: sg_BoincSimpleFrame.cpp:206 +#, c-format +msgid "&%s" +msgstr "" + +#: sg_BoincSimpleFrame.cpp:390 +msgid "Default" +msgstr "" + +#: sg_BoincSimpleFrame.cpp:759 +msgid "Suspend Computing" +msgstr "" + +#: sg_BoincSimpleFrame.cpp:760 +msgid "Resume Computing" +msgstr "" + +#: sg_BoincSimpleFrame.cpp:777 +msgid "Open a window to view notices from projects or BOINC" +msgstr "" + +#: sg_DlgMessages.cpp:146 +msgid "Close" +msgstr "" + +#: sg_DlgMessages.cpp:389 +#, c-format +msgid "%s - Notices" +msgstr "" + +#: sg_DlgPreferences.cpp:268 +msgid "This dialog controls preferences for this computer only." +msgstr "" + +#: sg_DlgPreferences.cpp:273 +msgid "Click OK to set preferences." +msgstr "" + +#: sg_DlgPreferences.cpp:278 +msgid "" +"Click Clear to restore web-based settings for all preferences listed below." +msgstr "" + +#: sg_DlgPreferences.cpp:285 +msgid "" +"For additional settings, select Computing Preferences in the Advanced View." +msgstr "" + +#: sg_DlgPreferences.cpp:313 +msgid "Do work only between:" +msgstr "" + +#: sg_DlgPreferences.cpp:335 +msgid "Connect to internet only between:" +msgstr "" + +#: sg_DlgPreferences.cpp:357 sg_DlgPreferences.cpp:374 +msgid "Use no more than:" +msgstr "" + +#: sg_DlgPreferences.cpp:370 +msgid "of disk space" +msgstr "" + +#: sg_DlgPreferences.cpp:387 +msgid "of the processor" +msgstr "" + +#: sg_DlgPreferences.cpp:391 +msgid "Do work while on battery?" +msgstr "" + +#: sg_DlgPreferences.cpp:404 +msgid "Do work after idle for:" +msgstr "" + +#: sg_DlgPreferences.cpp:429 +msgid "Clear all local preferences listed above and close the dialog" +msgstr "" + +#: sg_DlgPreferences.cpp:602 sg_DlgPreferences.cpp:605 +#: sg_DlgPreferences.cpp:681 sg_DlgPreferences.cpp:685 +#: sg_DlgPreferences.cpp:697 sg_DlgPreferences.cpp:701 +#: sg_DlgPreferences.cpp:844 sg_DlgPreferences.cpp:855 +msgid "Anytime" +msgstr "" + +#: sg_DlgPreferences.cpp:638 +msgid "100 MB" +msgstr "" + +#: sg_DlgPreferences.cpp:639 +msgid "200 MB" +msgstr "" + +#: sg_DlgPreferences.cpp:640 +msgid "500 MB" +msgstr "" + +#: sg_DlgPreferences.cpp:641 +msgid "1 GB" +msgstr "" + +#: sg_DlgPreferences.cpp:642 +msgid "2 GB" +msgstr "" + +#: sg_DlgPreferences.cpp:643 +msgid "5 GB" +msgstr "" + +#: sg_DlgPreferences.cpp:644 +msgid "10 GB" +msgstr "" + +#: sg_DlgPreferences.cpp:645 +msgid "20 GB" +msgstr "" + +#: sg_DlgPreferences.cpp:646 +msgid "50 GB" +msgstr "" + +#: sg_DlgPreferences.cpp:647 +msgid "100 GB" +msgstr "" + +#: sg_DlgPreferences.cpp:717 +#, c-format +msgid "%d MB" +msgstr "" + +#: sg_DlgPreferences.cpp:719 +#, c-format +msgid "%4.2f GB" +msgstr "" + +#: sg_DlgPreferences.cpp:760 +#, c-format +msgid "%d%%" +msgstr "" + +#: sg_DlgPreferences.cpp:796 +msgid "0 (Run Always)" +msgstr "" + +#: sg_DlgPreferences.cpp:799 +#, c-format +msgid "%d" +msgstr "" + +#: sg_DlgPreferences.cpp:1029 +msgid "Do you really want to clear all local preferences?\n" +msgstr "" + +#: sg_ProjectPanel.cpp:72 +msgid "Add Project" +msgstr "" + +#: sg_ProjectPanel.cpp:73 +msgid "Synchronize" +msgstr "" + +#: sg_ProjectPanel.cpp:74 +msgid "Work done for this project" +msgstr "" + +#: sg_ProjectPanel.cpp:77 +msgid "Synchronize projects with account manager system" +msgstr "" + +#: sg_ProjectPanel.cpp:124 +msgid "Select a project to access with the controls below" +msgstr "" + +#: sg_ProjectPanel.cpp:145 +msgid "Project Web Pages" +msgstr "" + +#: sg_ProjectPanel.cpp:149 +msgid "Project Commands" +msgstr "" + +#: sg_ProjectPanel.cpp:267 +#, c-format +msgid "Pop up a menu of web sites for project %s" +msgstr "" + +#: sg_ProjectPanel.cpp:269 +#, c-format +msgid "Pop up a menu of commands to apply to project %s" +msgstr "" + +#: sg_TaskCommandPopup.cpp:67 +msgid "Suspend this task." +msgstr "" + +#: sg_TaskCommandPopup.cpp:73 +msgid "Abandon this task. You will get no credit for it." +msgstr "" + +#: sg_TaskCommandPopup.cpp:251 +#, c-format +msgid "" +"Are you sure you want to abort this task '%s'?\n" +"(Progress: %.1lf%%, Status: %s)" +msgstr "" + +#: sg_TaskPanel.cpp:464 +msgid "You don't have any projects. Please Add a Project." +msgstr "" + +#: sg_TaskPanel.cpp:465 +msgid "Not available" +msgstr "" + +#: sg_TaskPanel.cpp:476 +msgid "Tasks:" +msgstr "" + +#: sg_TaskPanel.cpp:482 +msgid "Select a task to access" +msgstr "" + +#: sg_TaskPanel.cpp:493 +msgid "From:" +msgstr "" + +#: sg_TaskPanel.cpp:547 +msgid "This task's progress" +msgstr "" + +#: sg_TaskPanel.cpp:565 +msgid "Task Commands" +msgstr "" + +#: sg_TaskPanel.cpp:566 +msgid "Pop up a menu of commands to apply to this task" +msgstr "" + +#: sg_TaskPanel.cpp:701 +#, c-format +msgid "Application: %s" +msgstr "" + +#: sg_TaskPanel.cpp:724 +#, c-format +msgid "%.3f%%" +msgstr "" + +#: sg_TaskPanel.cpp:732 +msgid "Application: Not available" +msgstr "" + +#: sg_TaskPanel.cpp:832 +msgid "Not Available" +msgstr "" + +#: sg_TaskPanel.cpp:847 +#, c-format +msgid "Elapsed: %s" +msgstr "" + +#: sg_TaskPanel.cpp:861 +#, c-format +msgid "Remaining (estimated): %s" +msgstr "" + +#: sg_TaskPanel.cpp:876 +#, c-format +msgid "Status: %s" +msgstr "" + +#: sg_TaskPanel.cpp:1223 +msgid "Retrieving current status." +msgstr "" + +#: sg_TaskPanel.cpp:1229 +msgid "Downloading work from the server." +msgstr "" + +#: sg_TaskPanel.cpp:1234 +msgid "Processing Suspended: Running On Batteries." +msgstr "" + +#: sg_TaskPanel.cpp:1236 +msgid "Processing Suspended: User Active." +msgstr "" + +#: sg_TaskPanel.cpp:1238 +msgid "Processing Suspended: User paused processing." +msgstr "" + +#: sg_TaskPanel.cpp:1240 +msgid "Processing Suspended: Time of Day." +msgstr "" + +#: sg_TaskPanel.cpp:1242 +msgid "Processing Suspended: Benchmarks Running." +msgstr "" + +#: sg_TaskPanel.cpp:1244 +msgid "Processing Suspended." +msgstr "" + +#: sg_TaskPanel.cpp:1248 +msgid "Waiting to contact project servers." +msgstr "" + +#: sg_TaskPanel.cpp:1252 sg_TaskPanel.cpp:1261 +msgid "Retrieving current status" +msgstr "" + +#: sg_TaskPanel.cpp:1256 +msgid "No work available to process" +msgstr "" + +#: sg_TaskPanel.cpp:1258 +msgid "Unable to connect to the core client" +msgstr "" + +#: wizardex.cpp:377 wizardex.cpp:553 +msgid "&Next >" +msgstr "" + +#: wizardex.cpp:383 +msgid "< &Back" +msgstr "" + +#: wizardex.cpp:553 +msgid "&Finish" +msgstr "" + +#: mac/Mac_GUI.cpp:110 +msgid "Preferences…" +msgstr "" + +#: mac/Mac_GUI.cpp:122 +msgid "Services" +msgstr "" + +#: mac/Mac_GUI.cpp:144 +#, c-format +msgid "Hide %s" +msgstr "" + +#: mac/Mac_GUI.cpp:158 +msgid "Hide Others" +msgstr "" + +#: mac/Mac_GUI.cpp:172 +msgid "Show All" +msgstr "" + +#: mac/Mac_GUI.cpp:186 +#, c-format +msgid "Quit %s" +msgstr "" diff --git a/locale/ms/BOINC-Project-Generic.po b/locale/ms/BOINC-Project-Generic.po new file mode 100644 index 0000000000..07fb363298 --- /dev/null +++ b/locale/ms/BOINC-Project-Generic.po @@ -0,0 +1,6466 @@ +# BOINC web translation +# Copyright (C) 2008 University of California +# +# This file is distributed under the same license as BOINC. +# +# FileID : $Id$ +# +msgid "" +msgstr "" +"Project-Id-Version: BOINC $Id$\n" +"Report-Msgid-Bugs-To: BOINC translation team \n" +"POT-Creation-Date: 2014-01-10 00:00 PST\n" +"Last-Translator: Generated automatically from source files\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-SourceCharset: utf-8\n" + +msgid "LANG_NAME_NATIVE" +msgstr "" + +msgid "LANG_NAME_INTERNATIONAL" +msgstr "" + +#: ../inc/bbcode_html.inc:11 +msgid "Bold text: [b]text[/b] (alt+b)" +msgstr "" + +#: ../inc/bbcode_html.inc:14 +msgid "Italic text: [i]text[/i] (alt+i)" +msgstr "" + +#: ../inc/bbcode_html.inc:17 +msgid "Underline text: [u]text[/u] (alt+u)" +msgstr "" + +#: ../inc/bbcode_html.inc:20 +msgid "Quote text: [quote]text[/quote] (alt+q)" +msgstr "" + +#: ../inc/bbcode_html.inc:23 +msgid "Code display: [code]code[/code] (alt+c)" +msgstr "" + +#: ../inc/bbcode_html.inc:26 +msgid "List: [list]text[/list] (alt+l)" +msgstr "" + +#: ../inc/bbcode_html.inc:29 +msgid "Ordered list: [list=]text[/list] (alt+o)" +msgstr "" + +#: ../inc/bbcode_html.inc:32 +msgid "Insert image: [img]http://image_url[/img] (alt+p)" +msgstr "" + +#: ../inc/bbcode_html.inc:35 +msgid "" +"Insert URL: [url]http://url[/url] or [url=http://url]URL text[/url] (alt+w)" +msgstr "" + +#: ../inc/bbcode_html.inc:42 +msgid "Font color" +msgstr "" + +#: ../inc/bbcode_html.inc:43 +msgid "" +"Font color: [color=red]text[/color] Tip: you can also use color=#FF0000" +msgstr "" + +#: ../inc/bbcode_html.inc:44 ../inc/bbcode_html.inc:59 ../inc/prefs.inc:638 +msgid "Default" +msgstr "" + +#: ../inc/bbcode_html.inc:45 +msgid "Dark Red" +msgstr "" + +#: ../inc/bbcode_html.inc:46 +msgid "Red" +msgstr "" + +#: ../inc/bbcode_html.inc:47 +msgid "Orange" +msgstr "" + +#: ../inc/bbcode_html.inc:48 +msgid "Brown" +msgstr "" + +#: ../inc/bbcode_html.inc:49 +msgid "Yellow" +msgstr "" + +#: ../inc/bbcode_html.inc:50 +msgid "Green" +msgstr "" + +#: ../inc/bbcode_html.inc:51 +msgid "Olive" +msgstr "" + +#: ../inc/bbcode_html.inc:52 +msgid "Cyan" +msgstr "" + +#: ../inc/bbcode_html.inc:53 +msgid "Blue" +msgstr "" + +#: ../inc/bbcode_html.inc:54 +msgid "Dark Blue" +msgstr "" + +#: ../inc/bbcode_html.inc:55 +msgid "Indigo" +msgstr "" + +#: ../inc/bbcode_html.inc:56 +msgid "Violet" +msgstr "" + +#: ../inc/bbcode_html.inc:57 +msgid "Font size" +msgstr "" + +#: ../inc/bbcode_html.inc:58 +msgid "Font size: [size=x-small]small text[/size]" +msgstr "" + +#: ../inc/bbcode_html.inc:60 +msgid "Small" +msgstr "" + +#: ../inc/bbcode_html.inc:61 +msgid "Normal" +msgstr "" + +#: ../inc/bbcode_html.inc:62 +msgid "Large" +msgstr "" + +#: ../inc/bbcode_html.inc:65 +msgid "Close all open bbCode tags" +msgstr "" + +#: ../inc/bbcode_html.inc:65 +msgid "Close Tags" +msgstr "" + +#: ../inc/forum.inc:37 +msgid "Oldest first" +msgstr "" + +#: ../inc/forum.inc:38 ../inc/forum.inc:44 +msgid "Newest first" +msgstr "" + +#: ../inc/forum.inc:39 +msgid "Highest rated posts first" +msgstr "" + +#: ../inc/forum.inc:41 +msgid "Newest post first" +msgstr "" + +#: ../inc/forum.inc:42 +msgid "Most views first" +msgstr "" + +#: ../inc/forum.inc:43 +msgid "Most posts first" +msgstr "" + +#: ../inc/forum.inc:125 +msgid "Search for words in forum messages" +msgstr "" + +#: ../inc/forum.inc:125 +msgid "Search forums" +msgstr "" + +#: ../inc/forum.inc:126 +msgid "Advanced search" +msgstr "" + +#: ../inc/forum.inc:132 ../inc/user.inc:253 ../user/pm.php:69 +#: ../user/pm.php:133 +msgid "Private messages" +msgstr "" + +#: ../inc/forum.inc:151 ../user/bs_sample_index.php:63 +#: ../user/forum_forum.php:71 ../user/sample_index.php:130 +msgid "Questions and Answers" +msgstr "" + +#: ../inc/forum.inc:151 ../inc/forum.inc:183 ../inc/user.inc:250 +#: ../inc/user.inc:375 ../user/bs_sample_index.php:62 +#: ../user/forum_forum.php:73 ../user/sample_index.php:129 +#: ../project.sample/project.inc:43 +msgid "Message boards" +msgstr "" + +#: ../inc/forum.inc:187 ../inc/forum.inc:195 +msgid "%1 message board" +msgstr "" + +#: ../inc/forum.inc:245 ../inc/result.inc:695 +msgid "Previous" +msgstr "" + +#: ../inc/forum.inc:283 ../inc/result.inc:704 +msgid "Next" +msgstr "" + +#: ../inc/forum.inc:412 ../inc/forum.inc:1175 ../user/forum_forum.php:137 +#: ../user/forum_reply.php:120 ../user/forum_report_post.php:76 +msgid "Author" +msgstr "" + +#: ../inc/forum.inc:412 ../inc/pm.inc:86 ../user/forum_edit.php:128 +#: ../user/forum_edit.php:133 ../user/forum_post.php:116 +#: ../user/forum_reply.php:120 ../user/forum_report_post.php:76 +#: ../user/pm.php:90 ../user/pm.php:144 +msgid "Message" +msgstr "" + +#: ../inc/forum.inc:580 +msgid "Send message" +msgstr "" + +#: ../inc/forum.inc:580 +msgid "Send %1 a private message" +msgstr "" + +#: ../inc/forum.inc:581 +msgid "Joined: %1" +msgstr "" + +#: ../inc/forum.inc:590 +msgid "Posts: %1" +msgstr "" + +#: ../inc/forum.inc:596 +msgid "Credit: %1" +msgstr "" + +#: ../inc/forum.inc:597 +msgid "RAC: %1" +msgstr "" + +#: ../inc/forum.inc:620 +msgid "You haven't read this message yet" +msgstr "" + +#: ../inc/forum.inc:620 +msgid "Unread" +msgstr "" + +#: ../inc/forum.inc:623 ../inc/forum.inc:628 ../inc/forum.inc:727 +msgid "Message %1" +msgstr "" + +#: ../inc/forum.inc:624 ../inc/user.inc:331 ../user/forum_forum.php:174 +msgid "hidden" +msgstr "" + +#: ../inc/forum.inc:625 +msgid "Posted: %1" +msgstr "" + +#: ../inc/forum.inc:628 +msgid " - in response to " +msgstr "" + +#: ../inc/forum.inc:631 ../inc/prefs.inc:705 ../inc/prefs.inc:707 +msgid "Edit" +msgstr "" + +#: ../inc/forum.inc:631 +msgid "Edit this message" +msgstr "" + +#: ../inc/forum.inc:637 +msgid "Last modified: %1" +msgstr "" + +#: ../inc/forum.inc:640 +msgid "" +"This post is not shown because the sender is on your 'ignore' list. Click %" +"1here%2 to view this post" +msgstr "" + +#: ../inc/forum.inc:668 ../inc/forum.inc:679 +msgid "Report this post as offensive" +msgstr "" + +#: ../inc/forum.inc:668 ../inc/forum.inc:679 +msgid "Report as offensive" +msgstr "" + +#: ../inc/forum.inc:672 +msgid "Rating: %1" +msgstr "" + +#: ../inc/forum.inc:672 +msgid "rate: " +msgstr "" + +#: ../inc/forum.inc:675 +msgid "Click if you like this message" +msgstr "" + +#: ../inc/forum.inc:675 +msgid "Rate +" +msgstr "" + +#: ../inc/forum.inc:677 +msgid "Click if you don't like this message" +msgstr "" + +#: ../inc/forum.inc:677 +msgid "Rate -" +msgstr "" + +#: ../inc/forum.inc:685 ../user/pm.php:106 ../user/pm.php:146 +msgid "Reply" +msgstr "" + +#: ../inc/forum.inc:685 +msgid "Post a reply to this message" +msgstr "" + +#: ../inc/forum.inc:687 +msgid "Quote" +msgstr "" + +#: ../inc/forum.inc:687 +msgid "Post a reply by quoting this message" +msgstr "" + +#: ../inc/forum.inc:708 +msgid "Hidden by a moderator" +msgstr "" + +#: ../inc/forum.inc:729 +msgid "Posted %1 by %2" +msgstr "" + +#: ../inc/forum.inc:747 +msgid "You may not post or rate messages until %1" +msgstr "" + +#: ../inc/forum.inc:758 +msgid "" +"\n" +"
    \n" +"
  • Posts must be 'kid friendly': they may not contain\n" +" content that is obscene, hate-related,\n" +" sexually explicit or suggestive.\n" +"
  • No commercial advertisements.\n" +"
  • No links to web sites involving sexual content,\n" +" gambling, or intolerance of others.\n" +"
  • No messages intended to annoy or antagonize other people,\n" +" or to hijack a thread.\n" +"
  • No messages that are deliberately hostile or insulting.\n" +"
  • No abusive comments involving race, religion,\n" +" nationality, gender, class or sexuality.\n" +" " +msgstr "" + +#: ../inc/forum.inc:780 +msgid "Rules:" +msgstr "" + +#: ../inc/forum.inc:781 +msgid "More info" +msgstr "" + +#: ../inc/forum.inc:1055 ../user/forum_thread.php:189 +msgid "Unhide" +msgstr "" + +#: ../inc/forum.inc:1055 +msgid "Unhide this post" +msgstr "" + +#: ../inc/forum.inc:1057 ../user/forum_thread.php:195 +msgid "Hide" +msgstr "" + +#: ../inc/forum.inc:1057 +msgid "Hide this post" +msgstr "" + +#: ../inc/forum.inc:1062 ../user/forum_thread.php:228 +msgid "Move" +msgstr "" + +#: ../inc/forum.inc:1062 +msgid "Move post to a different thread" +msgstr "" + +#: ../inc/forum.inc:1067 +msgid "Banish author" +msgstr "" + +#: ../inc/forum.inc:1074 +msgid "Vote to banish author" +msgstr "" + +#: ../inc/forum.inc:1078 +msgid "Vote not to banish author" +msgstr "" + +#: ../inc/forum.inc:1083 +msgid "Start vote to banish author" +msgstr "" + +#: ../inc/forum.inc:1116 +msgid "Only team members can post to the team message board" +msgstr "" + +#: ../inc/forum.inc:1126 +msgid "" +"In order to create a new thread in %1 you must have a certain amount of " +"credit. This is to prevent and protect against abuse of the system." +msgstr "" + +#: ../inc/forum.inc:1133 +msgid "" +"You cannot create any more threads right now. Please wait a while before " +"trying again. This delay has been enforced to protect against abuse of the " +"system." +msgstr "" + +#: ../inc/forum.inc:1140 +msgid "" +"This thread is locked. Only forum moderators and administrators are allowed " +"to post there." +msgstr "" + +#: ../inc/forum.inc:1145 +msgid "Can't post to a hidden thread." +msgstr "" + +#: ../inc/forum.inc:1173 +msgid "Thread" +msgstr "" + +#: ../inc/forum.inc:1174 ../inc/team.inc:128 ../user/forum_forum.php:136 +#: ../user/forum_index.php:94 +msgid "Posts" +msgstr "" + +#: ../inc/forum.inc:1176 ../user/forum_forum.php:138 +msgid "Views" +msgstr "" + +#: ../inc/forum.inc:1177 ../inc/team.inc:128 ../user/forum_forum.php:139 +#: ../user/forum_help_desk.php:46 ../user/forum_index.php:95 +msgid "Last post" +msgstr "" + +#: ../inc/forum.inc:1235 +msgid "New posts in the thread %1" +msgstr "" + +#: ../inc/forum.inc:1240 +msgid "New posts in subscribed thread" +msgstr "" + +#: ../inc/forum.inc:1241 +msgid "There are new posts in the thread '%1'" +msgstr "" + +#: ../inc/forum.inc:1251 +msgid "Mark all threads as read" +msgstr "" + +#: ../inc/forum.inc:1252 +msgid "Mark all threads in all message boards as read." +msgstr "" + +#: ../inc/host.inc:24 +msgid "No host" +msgstr "" + +#: ../inc/host.inc:26 +msgid "Unavailable" +msgstr "" + +#: ../inc/host.inc:56 ../inc/prefs.inc:639 ../inc/prefs.inc:1048 +msgid "Home" +msgstr "" + +#: ../inc/host.inc:57 ../inc/prefs.inc:641 ../inc/prefs.inc:1049 +#: ../user/server_status.php:314 +msgid "Work" +msgstr "" + +#: ../inc/host.inc:58 ../inc/prefs.inc:640 ../inc/prefs.inc:1050 +msgid "School" +msgstr "" + +#: ../inc/host.inc:59 +msgid "Mobile" +msgstr "" + +#: ../inc/host.inc:61 ../user/edit_forum_preferences_form.php:172 +#: ../user/edit_forum_preferences_form.php:173 +msgid "Update" +msgstr "" + +#: ../inc/host.inc:85 +msgid "Computer information" +msgstr "" + +#: ../inc/host.inc:89 ../inc/host.inc:94 +msgid "IP address" +msgstr "" + +#: ../inc/host.inc:89 +msgid "(same the last %1 times)" +msgstr "" + +#: ../inc/host.inc:91 +msgid "External IP address" +msgstr "" + +#: ../inc/host.inc:94 +msgid "Show IP address" +msgstr "" + +#: ../inc/host.inc:96 +msgid "Domain name" +msgstr "" + +#: ../inc/host.inc:98 +msgid "Product name" +msgstr "" + +#: ../inc/host.inc:102 +msgid "Local Standard Time" +msgstr "" + +#: ../inc/host.inc:102 +msgid "UTC %1 hours" +msgstr "" + +#: ../inc/host.inc:106 ../inc/host.inc:108 ../inc/host.inc:222 +msgid "Owner" +msgstr "" + +#: ../inc/host.inc:108 ../inc/host.inc:355 +msgid "Anonymous" +msgstr "" + +#: ../inc/host.inc:112 ../inc/result.inc:630 +msgid "Created" +msgstr "" + +#: ../inc/host.inc:113 ../inc/host.inc:226 ../inc/host.inc:231 +#: ../inc/host.inc:681 ../inc/team.inc:101 ../inc/team.inc:215 +#: ../inc/team.inc:220 ../inc/team.inc:222 ../inc/team.inc:364 +#: ../inc/team.inc:369 ../inc/user.inc:125 ../inc/user.inc:138 +#: ../user/profile_search_action.php:43 +#: ../user/team_change_founder_form.php:78 ../user/team_email_list.php:64 +#: ../user/team_remove_inactive_form.php:41 ../user/top_users.php:54 +#: ../user/top_users.php:59 ../user/user_search.php:140 +msgid "Total credit" +msgstr "" + +#: ../inc/host.inc:114 ../inc/user.inc:125 ../user/team_search.php:70 +#: ../user/user_search.php:139 +msgid "Average credit" +msgstr "" + +#: ../inc/host.inc:116 +msgid "Cross project credit" +msgstr "" + +#: ../inc/host.inc:118 +msgid "CPU type" +msgstr "" + +#: ../inc/host.inc:119 +msgid "Number of processors" +msgstr "" + +#: ../inc/host.inc:121 +msgid "Coprocessors" +msgstr "" + +#: ../inc/host.inc:123 ../inc/host.inc:687 +msgid "Operating System" +msgstr "" + +#: ../inc/host.inc:126 ../inc/host.inc:235 +msgid "BOINC version" +msgstr "" + +#: ../inc/host.inc:130 +msgid "Memory" +msgstr "" + +#: ../inc/host.inc:130 ../inc/host.inc:140 +msgid "%1 MB" +msgstr "" + +#: ../inc/host.inc:134 +msgid "Cache" +msgstr "" + +#: ../inc/host.inc:134 +msgid "%1 KB" +msgstr "" + +#: ../inc/host.inc:140 +msgid "Swap space" +msgstr "" + +#: ../inc/host.inc:143 +msgid "Total disk space" +msgstr "" + +#: ../inc/host.inc:143 ../inc/host.inc:146 +msgid "%1 GB" +msgstr "" + +#: ../inc/host.inc:146 +msgid "Free Disk Space" +msgstr "" + +#: ../inc/host.inc:150 +msgid "Measured floating point speed" +msgstr "" + +#: ../inc/host.inc:150 ../inc/host.inc:153 +msgid "%1 million ops/sec" +msgstr "" + +#: ../inc/host.inc:153 +msgid "Measured integer speed" +msgstr "" + +#: ../inc/host.inc:157 ../inc/host.inc:159 +msgid "Average upload rate" +msgstr "" + +#: ../inc/host.inc:157 ../inc/host.inc:164 +msgid "%1 KB/sec" +msgstr "" + +#: ../inc/host.inc:159 ../inc/host.inc:166 ../inc/result.inc:216 +#: ../inc/result.inc:226 ../inc/result.inc:244 ../inc/result.inc:262 +#: ../inc/result.inc:278 ../user/explain_state.php:56 +#: ../user/host_app_versions.php:30 +msgid "Unknown" +msgstr "" + +#: ../inc/host.inc:164 ../inc/host.inc:166 +msgid "Average download rate" +msgstr "" + +#: ../inc/host.inc:169 ../user/host_app_versions.php:65 +msgid "Average turnaround time" +msgstr "" + +#: ../inc/host.inc:169 ../user/forum_search.php:46 ../user/forum_search.php:47 +#: ../user/forum_search.php:48 ../user/forum_search.php:49 +msgid "%1 days" +msgstr "" + +#: ../inc/host.inc:170 +msgid "Application details" +msgstr "" + +#: ../inc/host.inc:171 +msgid "Show" +msgstr "" + +#: ../inc/host.inc:181 ../inc/host.inc:336 ../inc/user.inc:152 +msgid "Tasks" +msgstr "" + +#: ../inc/host.inc:185 ../inc/host.inc:206 +msgid "Number of times client has contacted server" +msgstr "" + +#: ../inc/host.inc:186 +msgid "Last time contacted server" +msgstr "" + +#: ../inc/host.inc:187 +#, php-format +msgid "% of time BOINC is running" +msgstr "" + +#: ../inc/host.inc:189 +#, php-format +msgid "While BOINC running, % of time host has an Internet connection" +msgstr "" + +#: ../inc/host.inc:191 +#, php-format +msgid "While BOINC running, % of time work is allowed" +msgstr "" + +#: ../inc/host.inc:193 +msgid "Average CPU efficiency" +msgstr "" + +#: ../inc/host.inc:196 +msgid "Task duration correction factor" +msgstr "" + +#: ../inc/host.inc:198 ../inc/host.inc:674 +msgid "Location" +msgstr "" + +#: ../inc/host.inc:200 +msgid "Delete this computer" +msgstr "" + +#: ../inc/host.inc:204 +msgid "Merge duplicate records of this computer" +msgstr "" + +#: ../inc/host.inc:204 +msgid "Merge" +msgstr "" + +#: ../inc/host.inc:207 ../inc/host.inc:689 +msgid "Last contact" +msgstr "" + +#: ../inc/host.inc:220 +msgid "Computer info" +msgstr "" + +#: ../inc/host.inc:221 ../inc/host.inc:676 ../inc/team.inc:357 +#: ../user/top_users.php:48 +msgid "Rank" +msgstr "" + +#: ../inc/host.inc:225 ../inc/host.inc:679 +msgid "Avg. credit" +msgstr "" + +#: ../inc/host.inc:230 ../inc/team.inc:102 ../inc/team.inc:216 +#: ../inc/team.inc:225 ../inc/team.inc:227 ../inc/team.inc:363 +#: ../inc/team.inc:368 ../inc/user.inc:139 +#: ../user/team_change_founder_form.php:79 ../user/team_email_list.php:64 +#: ../user/team_remove_inactive_form.php:42 ../user/top_users.php:53 +#: ../user/top_users.php:58 +msgid "Recent average credit" +msgstr "" + +#: ../inc/host.inc:236 ../inc/host.inc:684 ../inc/result.inc:51 +#: ../user/host_app_versions.php:25 +msgid "CPU" +msgstr "" + +#: ../inc/host.inc:237 ../inc/host.inc:685 +msgid "GPU" +msgstr "" + +#: ../inc/host.inc:238 +msgid "Operating system" +msgstr "" + +#: ../inc/host.inc:315 +msgid "(%1 processors)" +msgstr "" + +#: ../inc/host.inc:335 +msgid "Details" +msgstr "" + +#: ../inc/host.inc:340 +msgid "Cross-project stats:" +msgstr "" + +#: ../inc/host.inc:515 +msgid "Host %1 has overlapping lifetime:" +msgstr "" + +#: ../inc/host.inc:522 +msgid "Host %1 has an incompatible OS:" +msgstr "" + +#: ../inc/host.inc:528 +msgid "Host %1 has an incompatible CPU:" +msgstr "" + +#: ../inc/host.inc:595 +msgid "same host" +msgstr "" + +#: ../inc/host.inc:598 +msgid "Can't merge host %1 into %2 - they're incompatible" +msgstr "" + +#: ../inc/host.inc:601 +msgid "Merging host %1 into host %2" +msgstr "" + +#: ../inc/host.inc:618 +msgid "Couldn't update credit of new computer" +msgstr "" + +#: ../inc/host.inc:622 +msgid "Couldn't update results" +msgstr "" + +#: ../inc/host.inc:627 +msgid "Couldn't retire old computer" +msgstr "" + +#: ../inc/host.inc:629 +msgid "Retired old computer %1" +msgstr "" + +#: ../inc/host.inc:652 ../inc/host.inc:655 +msgid "Show:" +msgstr "" + +#: ../inc/host.inc:652 ../inc/host.inc:655 +msgid "All computers" +msgstr "" + +#: ../inc/host.inc:652 ../inc/host.inc:655 +msgid "Only computers active in past 30 days" +msgstr "" + +#: ../inc/host.inc:666 ../inc/result.inc:637 +msgid "Computer ID" +msgstr "" + +#: ../inc/host.inc:669 ../inc/result.inc:628 ../inc/team.inc:210 +#: ../inc/team.inc:358 ../inc/user.inc:199 ../user/account_finish.php:41 +#: ../user/create_account_form.php:79 ../user/team_admins.php:62 +#: ../user/team_change_founder_form.php:77 ../user/team_email_list.php:64 +#: ../user/top_users.php:49 ../user/user_search.php:139 +msgid "Name" +msgstr "" + +#: ../inc/host.inc:682 +msgid "BOINC
    version" +msgstr "" + +#: ../inc/host.inc:745 ../user/merge_by_name.php:65 +msgid "Merge computers by name" +msgstr "" + +#: ../inc/language_names.inc:61 +msgid "Browser default" +msgstr "" + +#: ../inc/news.inc:40 +msgid "Comment" +msgstr "" + +#: ../inc/news.inc:111 +#, php-format +msgid "News is available as an %sRSS feed%s" +msgstr "" + +#: ../inc/pm.inc:25 ../inc/pm.inc:174 ../user/pm.php:69 ../user/pm.php:148 +msgid "Inbox" +msgstr "" + +#: ../inc/pm.inc:26 ../inc/pm.inc:178 +msgid "Write" +msgstr "" + +#: ../inc/pm.inc:33 ../inc/user.inc:378 +msgid "Send private message" +msgstr "" + +#: ../inc/pm.inc:35 ../inc/pm.inc:37 ../inc/pm.inc:89 +#: ../user/ffmail_form.php:58 ../user/forum_edit.php:99 +#: ../user/forum_edit.php:101 ../user/forum_edit.php:145 +#: ../user/forum_post.php:61 ../user/forum_post.php:87 +#: ../user/forum_post.php:89 ../user/forum_post.php:130 +#: ../user/forum_reply.php:74 ../user/forum_reply.php:107 +#: ../user/forum_reply.php:109 ../user/forum_reply.php:165 ../user/pm.php:181 +msgid "Preview" +msgstr "" + +#: ../inc/pm.inc:48 ../user/pm.php:131 +msgid "no such message" +msgstr "" + +#: ../inc/pm.inc:82 +msgid "To" +msgstr "" + +#: ../inc/pm.inc:82 +msgid "User IDs or unique usernames, separated with commas" +msgstr "" + +#: ../inc/pm.inc:85 ../user/pm.php:90 ../user/pm.php:139 +msgid "Subject" +msgstr "" + +#: ../inc/pm.inc:89 +msgid "Send message" +msgstr "" + +#: ../inc/pm.inc:121 +msgid "sent you a private message; subject:" +msgstr "" + +#: ../inc/pm.inc:127 +msgid "Private message%1 from %2, subject:" +msgstr "" + +#: ../inc/pm.inc:135 +msgid "Couldn't create message" +msgstr "" + +#: ../inc/pm.inc:166 +msgid "" +"You are not allowed to send privates messages so often. Please wait some " +"time before sending more messages." +msgstr "" + +#: ../inc/pm.inc:176 ../user/forum_forum.php:186 +msgid "unread" +msgstr "" + +#: ../inc/pm.inc:186 +msgid "For email notification, %1edit community prefs%2" +msgstr "" + +#: ../inc/pm.inc:198 +msgid "Private message" +msgstr "" + +#: ../inc/prefs.inc:77 +msgid "" +"Suspend work while computer is on battery power? %1 Matters only for " +"portable computers %2" +msgstr "" + +#: ../inc/prefs.inc:85 +msgid "Suspend work while computer is in use?" +msgstr "" + +#: ../inc/prefs.inc:91 +msgid "" +"Suspend GPU work while computer is in use? %1 Enforced by version 6.6.21+ %2" +msgstr "" + +#: ../inc/prefs.inc:99 +msgid "'In use' means mouse/keyboard activity in last" +msgstr "" + +#: ../inc/prefs.inc:101 ../inc/prefs.inc:110 ../inc/prefs.inc:144 +msgid "minutes" +msgstr "" + +#: ../inc/prefs.inc:105 +msgid "" +"Suspend work if no mouse/keyboard activity in last %1 Needed to enter low-" +"power mode on some computers %2" +msgstr "" + +#: ../inc/prefs.inc:114 +msgid "" +"Suspend work when non-BOINC CPU usage is above %1 0 means no " +"restriction
    Enforced by version 6.10.30+ %2" +msgstr "" + +#: ../inc/prefs.inc:122 +msgid "Do work only between the hours of %1 No restriction if equal %2" +msgstr "" + +#: ../inc/prefs.inc:130 +msgid "" +"Leave tasks in memory while suspended? %1 Suspended tasks will consume swap " +"space if 'yes' %2" +msgstr "" + +#: ../inc/prefs.inc:139 +msgid "Switch between tasks every %1 Recommended: 60 minutes %2" +msgstr "" + +#: ../inc/prefs.inc:147 +msgid "On multiprocessors, use at most" +msgstr "" + +#: ../inc/prefs.inc:149 +msgid "processors" +msgstr "" + +#: ../inc/prefs.inc:153 +msgid "On multiprocessors, use at most %1 Enforced by version 6.1+ %2" +msgstr "" + +#: ../inc/prefs.inc:158 +#, php-format +msgid "% of the processors" +msgstr "" + +#: ../inc/prefs.inc:162 +msgid "Use at most %1 Can be used to reduce CPU heat %2" +msgstr "" + +#: ../inc/prefs.inc:167 +#, php-format +msgid "% of CPU time" +msgstr "" + +#: ../inc/prefs.inc:175 ../inc/prefs.inc:189 +msgid "Disk: use at most" +msgstr "" + +#: ../inc/prefs.inc:177 ../inc/prefs.inc:186 +msgid "GB" +msgstr "" + +#: ../inc/prefs.inc:180 +msgid "Disk: leave free at least %1 Values smaller than %2 are ignored %3" +msgstr "" + +#: ../inc/prefs.inc:191 ../inc/prefs.inc:201 ../inc/prefs.inc:206 +#: ../inc/prefs.inc:211 +#, php-format +msgid "% of total" +msgstr "" + +#: ../inc/prefs.inc:194 +msgid "Tasks checkpoint to disk at most every" +msgstr "" + +#: ../inc/prefs.inc:196 +msgid "seconds" +msgstr "" + +#: ../inc/prefs.inc:199 +msgid "Swap space: use at most" +msgstr "" + +#: ../inc/prefs.inc:204 +msgid "Memory: when computer is in use, use at most" +msgstr "" + +#: ../inc/prefs.inc:209 +msgid "Memory: when computer is not in use, use at most" +msgstr "" + +#: ../inc/prefs.inc:218 +msgid "Maintain enough tasks to keep busy for at least%1(max 10 days).%2" +msgstr "" + +#: ../inc/prefs.inc:223 ../inc/prefs.inc:228 ../inc/prefs.inc:270 +#: ../inc/util.inc:274 +msgid "days" +msgstr "" + +#: ../inc/prefs.inc:226 +msgid "... and up to an additional" +msgstr "" + +#: ../inc/prefs.inc:232 +msgid "" +"Confirm before connecting to Internet? %1 Matters only if you have a modem, " +"ISDN or VPN connection %2" +msgstr "" + +#: ../inc/prefs.inc:241 +msgid "" +"Disconnect when done? %1 Matters only if you have a modem, ISDN or VPN " +"connection %2" +msgstr "" + +#: ../inc/prefs.inc:249 +msgid "Maximum download rate:" +msgstr "" + +#: ../inc/prefs.inc:251 ../inc/prefs.inc:256 +msgid "Kbytes/sec" +msgstr "" + +#: ../inc/prefs.inc:254 +msgid "Maximum upload rate:" +msgstr "" + +#: ../inc/prefs.inc:259 +msgid "Use network only between the hours of" +msgstr "" + +#: ../inc/prefs.inc:263 +msgid "Transfer at most %1 Enforced by version 6.10.46+ %2" +msgstr "" + +#: ../inc/prefs.inc:269 +msgid "Mbytes every" +msgstr "" + +#: ../inc/prefs.inc:274 +msgid "" +"Skip image file verification? %1 Check this ONLY if your Internet provider " +"modifies image files (UMTS does this, for example). %2 Skipping verification " +"reduces the security of BOINC. %3" +msgstr "" + +#: ../inc/prefs.inc:287 +msgid "" +"Resource share %1 Determines the proportion of your computer's resources " +"allocated to this project. Example: if you participate in two BOINC projects " +"with resource shares of 100 and 200, the first will get 1/3 of your " +"resources and the second will get 2/3. %2" +msgstr "" + +#: ../inc/prefs.inc:298 +msgid "Accelerate GPU tasks by dedicating a CPU to each one?" +msgstr "" + +#: ../inc/prefs.inc:308 +msgid "Use CPU %1 Enforced by version 6.10+ %2" +msgstr "" + +#: ../inc/prefs.inc:320 +msgid "Use ATI GPU %1 Enforced by version 6.10+ %2" +msgstr "" + +#: ../inc/prefs.inc:332 +msgid "Use NVIDIA GPU %1 Enforced by version 6.10+ %2" +msgstr "" + +#: ../inc/prefs.inc:344 +msgid "Use Intel GPU %1 Enforced by version 7.2+ %2" +msgstr "" + +#: ../inc/prefs.inc:358 +msgid "" +"Run test applications? %1 This helps us develop applications, but may cause " +"jobs to fail on your computer %2" +msgstr "" + +#: ../inc/prefs.inc:367 +msgid "" +"Emails will be sent from %1; make sure your spam filter accepts this address." +msgstr "" + +#: ../inc/prefs.inc:374 +msgid "Is it OK for %1 and your team (if any) to email you?" +msgstr "" + +#: ../inc/prefs.inc:380 +msgid "Should %1 show your computers on its web site?" +msgstr "" + +#: ../inc/prefs.inc:387 +msgid "Disk and memory usage" +msgstr "" + +#: ../inc/prefs.inc:388 +msgid "Processor usage" +msgstr "" + +#: ../inc/prefs.inc:389 +msgid "Network usage" +msgstr "" + +#: ../inc/prefs.inc:392 +msgid "" +"These preferences apply to all the BOINC projects in which you participate." +msgstr "" + +#: ../inc/prefs.inc:395 +msgid "" +"%1Unable to update preferences.%2 The values marked in red below were out of " +"range or not numeric." +msgstr "" + +#: ../inc/prefs.inc:445 +msgid "bad venue: %1" +msgstr "" + +#: ../inc/prefs.inc:451 +msgid "bad subset: %1" +msgstr "" + +#: ../inc/prefs.inc:671 ../inc/prefs.inc:674 ../inc/prefs.inc:1025 +#: ../inc/prefs_util.inc:93 ../project.sample/project_specific_prefs.inc:85 +msgid "yes" +msgstr "" + +#: ../inc/prefs.inc:671 ../inc/prefs.inc:674 ../inc/prefs.inc:1027 +#: ../inc/prefs_util.inc:93 ../project.sample/project_specific_prefs.inc:87 +msgid "no" +msgstr "" + +#: ../inc/prefs.inc:679 ../user/forum_search.php:53 +msgid "no limit" +msgstr "" + +#: ../inc/prefs.inc:704 ../user/team_admins.php:79 +msgid "Add" +msgstr "" + +#: ../inc/prefs.inc:706 ../inc/prefs.inc:834 +#: ../user/edit_forum_preferences_form.php:160 ../user/team_admins.php:34 +msgid "Remove" +msgstr "" + +#: ../inc/prefs.inc:812 ../user/explain_state.php:94 +msgid "Computing" +msgstr "" + +#: ../inc/prefs.inc:823 +msgid "Separate preferences for %1" +msgstr "" + +#: ../inc/prefs.inc:833 ../inc/prefs.inc:914 +msgid "Edit preferences" +msgstr "" + +#: ../inc/prefs.inc:839 +msgid "Add separate preferences for %1" +msgstr "" + +#: ../inc/prefs.inc:847 ../inc/prefs.inc:895 +msgid "(Switch View)" +msgstr "" + +#: ../inc/prefs.inc:849 ../inc/prefs.inc:898 +msgid "Combined preferences" +msgstr "" + +#: ../inc/prefs.inc:854 +msgid "Project specific settings" +msgstr "" + +#: ../inc/prefs.inc:862 ../inc/prefs.inc:907 +msgid "Primary (default) preferences" +msgstr "" + +#: ../inc/prefs.inc:871 ../user/add_venue.php:39 ../user/add_venue.php:63 +#: ../user/prefs_edit.php:40 ../user/prefs_edit.php:64 +#: ../user/prefs_edit.php:92 +msgid "Edit %1 preferences" +msgstr "" + +#: ../inc/prefs.inc:885 +msgid "These apply to all BOINC projects in which you participate." +msgstr "" + +#: ../inc/prefs.inc:887 +msgid "" +"On computers participating in multiple projects, the most recently modified " +"preferences will be used." +msgstr "" + +#: ../inc/prefs.inc:889 +msgid "These preferences do not apply to Android devices." +msgstr "" + +#: ../inc/prefs.inc:892 +msgid "Preferences last modified:" +msgstr "" + +#: ../inc/prefs.inc:944 +msgid "Add preferences" +msgstr "" + +#: ../inc/prefs.inc:948 +msgid "Update preferences" +msgstr "" + +#: ../inc/prefs.inc:1036 ../inc/prefs.inc:1045 +msgid "Default computer location" +msgstr "" + +#: ../inc/prefs_util.inc:305 ../inc/prefs_util.inc:315 +msgid "and" +msgstr "" + +#: ../inc/profile.inc:86 +msgid "" +"Your profile will be made visible to other people as soon as it has been " +"approved by the project. This may take up to a few days." +msgstr "" + +#: ../inc/profile.inc:92 +msgid "" +"Your profile has been marked as unacceptable. It is not visible to other " +"people. Please change it." +msgstr "" + +#: ../inc/profile.inc:172 ../user/friend.php:105 ../user/friend.php:172 +msgid "Database error" +msgstr "" + +#: ../inc/profile.inc:193 +msgid "" +"To prevent spam, profiles of users with an average credit of less than %1 " +"are displayed only to logged-in users. We apologize for this inconvenience." +msgstr "" + +#: ../inc/profile.inc:197 +msgid "User is banished" +msgstr "" + +#: ../inc/profile.inc:211 +msgid "No profile exists for that user ID." +msgstr "" + +#: ../inc/profile.inc:219 ../user/create_profile.php:313 +msgid "Edit your profile" +msgstr "" + +#: ../inc/profile.inc:262 +msgid "Your feedback on this profile" +msgstr "" + +#: ../inc/profile.inc:264 +msgid "Recommend this profile for User of the Day:" +msgstr "" + +#: ../inc/profile.inc:265 +msgid "I %1like%2 this profile" +msgstr "" + +#: ../inc/profile.inc:268 +msgid "Alert administrators to an offensive profile:" +msgstr "" + +#: ../inc/profile.inc:269 +msgid "I %1do not like%2 this profile" +msgstr "" + +#: ../inc/result.inc:35 +msgid "Anonymous platform" +msgstr "" + +#: ../inc/result.inc:53 ../user/host_app_versions.php:26 +msgid "NVIDIA GPU" +msgstr "" + +#: ../inc/result.inc:55 ../user/host_app_versions.php:27 +msgid "ATI GPU" +msgstr "" + +#: ../inc/result.inc:57 ../user/host_app_versions.php:28 +msgid "Intel GPU" +msgstr "" + +#: ../inc/result.inc:65 +msgid "Not in DB" +msgstr "" + +#: ../inc/result.inc:91 +msgid "pending" +msgstr "" + +#: ../inc/result.inc:114 ../user/forum_search.php:60 +msgid "All" +msgstr "" + +#: ../inc/result.inc:115 ../inc/result.inc:176 ../inc/result.inc:223 +msgid "In progress" +msgstr "" + +#: ../inc/result.inc:116 +msgid "Validation pending" +msgstr "" + +#: ../inc/result.inc:117 +msgid "Validation inconclusive" +msgstr "" + +#: ../inc/result.inc:118 ../inc/result.inc:268 +msgid "Valid" +msgstr "" + +#: ../inc/result.inc:119 ../inc/result.inc:271 +msgid "Invalid" +msgstr "" + +#: ../inc/result.inc:120 ../inc/result.inc:209 +msgid "Error" +msgstr "" + +#: ../inc/result.inc:174 ../inc/result.inc:221 ../user/explain_state.php:34 +msgid "Inactive" +msgstr "" + +#: ../inc/result.inc:175 ../inc/result.inc:222 ../user/explain_state.php:37 +msgid "Unsent" +msgstr "" + +#: ../inc/result.inc:181 +msgid "Completed, waiting for validation" +msgstr "" + +#: ../inc/result.inc:182 +msgid "Completed and validated" +msgstr "" + +#: ../inc/result.inc:183 +msgid "Completed, marked as invalid" +msgstr "" + +#: ../inc/result.inc:184 +msgid "Completed, can't validate" +msgstr "" + +#: ../inc/result.inc:185 +msgid "Completed, validation inconclusive" +msgstr "" + +#: ../inc/result.inc:186 +msgid "Completed, too late to validate" +msgstr "" + +#: ../inc/result.inc:188 +msgid "Completed" +msgstr "" + +#: ../inc/result.inc:189 ../inc/result.inc:233 ../user/explain_state.php:62 +msgid "Couldn't send" +msgstr "" + +#: ../inc/result.inc:194 ../inc/result.inc:257 +msgid "Cancelled by server" +msgstr "" + +#: ../inc/result.inc:199 +msgid "Not started by deadline - canceled" +msgstr "" + +#: ../inc/result.inc:202 +msgid "Error while downloading" +msgstr "" + +#: ../inc/result.inc:204 +msgid "Error while computing" +msgstr "" + +#: ../inc/result.inc:205 +msgid "Error while uploading" +msgstr "" + +#: ../inc/result.inc:206 ../inc/result.inc:259 +msgid "Aborted by user" +msgstr "" + +#: ../inc/result.inc:207 ../inc/result.inc:260 +msgid "Upload failed" +msgstr "" + +#: ../inc/result.inc:210 +msgid "Timed out - no response" +msgstr "" + +#: ../inc/result.inc:211 ../inc/result.inc:240 ../user/explain_state.php:71 +msgid "Didn't need" +msgstr "" + +#: ../inc/result.inc:212 ../inc/result.inc:241 ../user/explain_state.php:74 +msgid "Validate error" +msgstr "" + +#: ../inc/result.inc:213 ../inc/result.inc:242 +msgid "Abandoned" +msgstr "" + +#: ../inc/result.inc:224 ../user/explain_state.php:43 +msgid "Over" +msgstr "" + +#: ../inc/result.inc:232 ../user/explain_state.php:59 +msgid "Success" +msgstr "" + +#: ../inc/result.inc:236 +msgid "Computation error" +msgstr "" + +#: ../inc/result.inc:238 +msgid "Redundant result" +msgstr "" + +#: ../inc/result.inc:239 ../user/explain_state.php:68 +msgid "No reply" +msgstr "" + +#: ../inc/result.inc:249 ../user/explain_state.php:85 +msgid "New" +msgstr "" + +#: ../inc/result.inc:250 ../user/explain_state.php:91 +msgid "Downloading" +msgstr "" + +#: ../inc/result.inc:251 +msgid "Processing" +msgstr "" + +#: ../inc/result.inc:252 +msgid "Compute error" +msgstr "" + +#: ../inc/result.inc:253 ../user/explain_state.php:97 +msgid "Uploading" +msgstr "" + +#: ../inc/result.inc:254 ../user/explain_state.php:88 +msgid "Done" +msgstr "" + +#: ../inc/result.inc:267 +msgid "Initial" +msgstr "" + +#: ../inc/result.inc:273 +msgid "Not necessary" +msgstr "" + +#: ../inc/result.inc:274 +msgid "Workunit error - check skipped" +msgstr "" + +#: ../inc/result.inc:275 +msgid "Checked, but no consensus yet" +msgstr "" + +#: ../inc/result.inc:276 +msgid "Task was reported too late to validate" +msgstr "" + +#: ../inc/result.inc:302 +msgid "Couldn't send result" +msgstr "" + +#: ../inc/result.inc:306 +msgid "Too many errors (may have bug)" +msgstr "" + +#: ../inc/result.inc:310 +msgid "Too many results (may be nondeterministic)" +msgstr "" + +#: ../inc/result.inc:314 +msgid "Too many total results" +msgstr "" + +#: ../inc/result.inc:318 +msgid "WU cancelled" +msgstr "" + +#: ../inc/result.inc:322 +msgid "Unrecognized Error: %1" +msgstr "" + +#: ../inc/result.inc:349 +msgid "Task name" +msgstr "" + +#: ../inc/result.inc:349 ../inc/result.inc:354 ../inc/result.inc:357 +#: ../inc/result.inc:360 +msgid "click for details" +msgstr "" + +#: ../inc/result.inc:349 +msgid "Show IDs" +msgstr "" + +#: ../inc/result.inc:354 +msgid "Show names" +msgstr "" + +#: ../inc/result.inc:357 +msgid "Task" +msgstr "" + +#: ../inc/result.inc:360 +msgid "Work unit" +msgstr "" + +#: ../inc/result.inc:369 +msgid "Computer" +msgstr "" + +#: ../inc/result.inc:372 ../inc/result.inc:631 +msgid "Sent" +msgstr "" + +#: ../inc/result.inc:373 +msgid "Time reported
    or deadline" +msgstr "" + +#: ../inc/result.inc:374 +msgid "explain" +msgstr "" + +#: ../inc/result.inc:376 ../user/server_status.php:241 +msgid "Status" +msgstr "" + +#: ../inc/result.inc:377 +msgid "Run time
    (sec)" +msgstr "" + +#: ../inc/result.inc:378 +msgid "CPU time
    (sec)" +msgstr "" + +#: ../inc/result.inc:379 ../inc/result.inc:642 +msgid "Credit" +msgstr "" + +#: ../inc/result.inc:380 ../inc/result.inc:724 +msgid "Application" +msgstr "" + +#: ../inc/result.inc:629 +msgid "Workunit" +msgstr "" + +#: ../inc/result.inc:632 +msgid "Received" +msgstr "" + +#: ../inc/result.inc:633 +msgid "Server state" +msgstr "" + +#: ../inc/result.inc:634 +msgid "Outcome" +msgstr "" + +#: ../inc/result.inc:635 +msgid "Client state" +msgstr "" + +#: ../inc/result.inc:636 +msgid "Exit status" +msgstr "" + +#: ../inc/result.inc:638 +msgid "Report deadline" +msgstr "" + +#: ../inc/result.inc:639 +msgid "Run time" +msgstr "" + +#: ../inc/result.inc:640 +msgid "CPU time" +msgstr "" + +#: ../inc/result.inc:641 +msgid "Validate state" +msgstr "" + +#: ../inc/result.inc:643 +msgid "Application version" +msgstr "" + +#: ../inc/result.inc:656 +msgid "Output files" +msgstr "" + +#: ../inc/result.inc:659 +msgid "Stderr output" +msgstr "" + +#: ../inc/result.inc:706 +msgid "State" +msgstr "" + +#: ../inc/result.inc:747 +msgid "Task name:" +msgstr "" + +#: ../inc/team.inc:40 +msgid "Search criteria (use one or more)" +msgstr "" + +#: ../inc/team.inc:41 +msgid "Key words" +msgstr "" + +#: ../inc/team.inc:41 +msgid "Find teams with these words in their names or descriptions" +msgstr "" + +#: ../inc/team.inc:43 ../inc/team.inc:122 ../inc/team.inc:233 +#: ../inc/team.inc:373 ../inc/team.inc:455 ../inc/user.inc:205 +#: ../inc/user.inc:317 ../user/account_finish.php:45 +#: ../user/create_account_form.php:98 ../user/edit_user_info_form.php:38 +#: ../user/profile_search_action.php:42 ../user/team_email_list.php:64 +#: ../user/team_search.php:72 ../user/top_users.php:63 +#: ../user/user_search.php:53 ../user/user_search.php:140 +msgid "Country" +msgstr "" + +#: ../inc/team.inc:49 ../inc/team.inc:453 +msgid "Type of team" +msgstr "" + +#: ../inc/team.inc:51 +msgid "Show only active teams" +msgstr "" + +#: ../inc/team.inc:52 ../user/profile_menu.php:76 ../user/user_search.php:70 +msgid "Search" +msgstr "" + +#: ../inc/team.inc:61 +msgid "Requested by you, and founder response deadline has passed." +msgstr "" + +#: ../inc/team.inc:63 +msgid "Complete foundership transfer" +msgstr "" + +#: ../inc/team.inc:67 +msgid "Requested by you" +msgstr "" + +#: ../inc/team.inc:67 +msgid "founder response deadline is %1" +msgstr "" + +#: ../inc/team.inc:72 ../inc/team.inc:555 ../inc/user.inc:281 +#: ../inc/user.inc:371 +msgid "None" +msgstr "" + +#: ../inc/team.inc:74 +msgid "Initiate request" +msgstr "" + +#: ../inc/team.inc:77 +msgid "Deferred" +msgstr "" + +#: ../inc/team.inc:87 +msgid "Team info" +msgstr "" + +#: ../inc/team.inc:89 ../user/team_forum.php:70 ../user/team_search.php:69 +msgid "Description" +msgstr "" + +#: ../inc/team.inc:97 +msgid "Web site" +msgstr "" + +#: ../inc/team.inc:120 +msgid "Cross-project stats" +msgstr "" + +#: ../inc/team.inc:123 ../inc/team.inc:374 ../user/team_search.php:71 +msgid "Type" +msgstr "" + +#: ../inc/team.inc:127 ../user/team_manage.php:63 +msgid "Message board" +msgstr "" + +#: ../inc/team.inc:128 ../user/forum_forum.php:135 ../user/forum_index.php:93 +msgid "Threads" +msgstr "" + +#: ../inc/team.inc:136 +msgid "Join this team" +msgstr "" + +#: ../inc/team.inc:137 +msgid "" +"Note: if 'OK to email' is set in your project preferences, joining a team " +"gives its founder access to your email address." +msgstr "" + +#: ../inc/team.inc:140 +msgid "Not accepting new members" +msgstr "" + +#: ../inc/team.inc:147 +msgid "Foundership change requested" +msgstr "" + +#: ../inc/team.inc:148 +msgid "Respond by %1" +msgstr "" + +#: ../inc/team.inc:152 +msgid "Team foundership change" +msgstr "" + +#: ../inc/team.inc:156 ../inc/team.inc:359 +msgid "Members" +msgstr "" + +#: ../inc/team.inc:157 ../inc/team.inc:254 +msgid "Founder" +msgstr "" + +#: ../inc/team.inc:169 +msgid "Admins" +msgstr "" + +#: ../inc/team.inc:184 +msgid "New members in last day" +msgstr "" + +#: ../inc/team.inc:185 +msgid "Total members" +msgstr "" + +#: ../inc/team.inc:185 ../inc/team.inc:186 ../inc/team.inc:187 +msgid "view" +msgstr "" + +#: ../inc/team.inc:186 +msgid "Active members" +msgstr "" + +#: ../inc/team.inc:187 +msgid "Members with credit" +msgstr "" + +#: ../inc/team.inc:256 +msgid "Admin" +msgstr "" + +#: ../inc/team.inc:277 ../user/forum_user_posts.php:122 +#: ../user/top_hosts.php:93 ../user/top_teams.php:121 +#: ../user/top_users.php:127 +msgid "Previous %1" +msgstr "" + +#: ../inc/team.inc:281 ../user/forum_user_posts.php:131 +#: ../user/profile_search_action.php:61 ../user/top_hosts.php:98 +#: ../user/top_teams.php:126 ../user/top_users.php:132 +msgid "Next %1" +msgstr "" + +#: ../inc/team.inc:289 +msgid "No such team." +msgstr "" + +#: ../inc/team.inc:302 +msgid "This operation requires foundership." +msgstr "" + +#: ../inc/team.inc:326 +msgid "This operation requires team admin privileges" +msgstr "" + +#: ../inc/team.inc:422 +msgid "" +"WARNING: this is a BOINC-wide team. If you make changes here, they will soon " +"be overwritten. Edit the %1BOINC-wide team%2 instead." +msgstr "" + +#: ../inc/team.inc:428 +msgid "" +"%1Privacy note%2: if you create a team, your project preferences (resource " +"share, graphics preferences) will be visible to the public." +msgstr "" + +#: ../inc/team.inc:432 +msgid "Team name, text version" +msgstr "" + +#: ../inc/team.inc:433 +msgid "Don't use HTML tags." +msgstr "" + +#: ../inc/team.inc:436 +msgid "Team name, HTML version" +msgstr "" + +#: ../inc/team.inc:438 ../inc/team.inc:448 +msgid "You may use %1limited HTML tags%2." +msgstr "" + +#: ../inc/team.inc:439 +msgid "If you don't know HTML, leave this box blank." +msgstr "" + +#: ../inc/team.inc:442 +msgid "URL of team web page, if any" +msgstr "" + +#: ../inc/team.inc:442 +msgid "without \"http://\"" +msgstr "" + +#: ../inc/team.inc:443 +msgid "This URL will be linked to from the team's page on this site." +msgstr "" + +#: ../inc/team.inc:446 +msgid "Description of team" +msgstr "" + +#: ../inc/team.inc:462 +msgid "Accept new members?" +msgstr "" + +#: ../inc/uotd.inc:28 +msgid "User profile" +msgstr "" + +#: ../inc/user.inc:119 +msgid "Projects in which you are participating" +msgstr "" + +#: ../inc/user.inc:121 +msgid "Projects in which %1 is participating" +msgstr "" + +#: ../inc/user.inc:125 +msgid "Project" +msgstr "" + +#: ../inc/user.inc:125 +msgid "Click for user page" +msgstr "" + +#: ../inc/user.inc:125 +msgid "Since" +msgstr "" + +#: ../inc/user.inc:148 +msgid "Computing and credit" +msgstr "" + +#: ../inc/user.inc:151 +msgid "Computers on this account" +msgstr "" + +#: ../inc/user.inc:151 ../inc/user.inc:152 ../inc/user.inc:217 +#: ../inc/user.inc:243 ../inc/user.inc:329 ../inc/user.inc:402 +#: ../user/view_profile.php:64 +msgid "View" +msgstr "" + +#: ../inc/user.inc:161 +msgid "Cross-project ID" +msgstr "" + +#: ../inc/user.inc:162 +msgid "Cross-project statistics" +msgstr "" + +#: ../inc/user.inc:163 +msgid "Account" +msgstr "" + +#: ../inc/user.inc:165 ../inc/user.inc:281 ../inc/user.inc:369 +#: ../inc/user.inc:371 ../user/user_search.php:139 +msgid "Team" +msgstr "" + +#: ../inc/user.inc:167 +msgid "Cross-project" +msgstr "" + +#: ../inc/user.inc:168 ../user/bs_sample_index.php:54 +msgid "Certificate" +msgstr "" + +#: ../inc/user.inc:169 +msgid "Stats on your cell phone" +msgstr "" + +#: ../inc/user.inc:183 +msgid "Unknown notification type: %1" +msgstr "" + +#: ../inc/user.inc:198 +msgid "Account information" +msgstr "" + +#: ../inc/user.inc:200 ../user/edit_passwd_form.php:45 +#: ../user/get_passwd.php:40 ../user/team_email_list.php:64 +msgid "Email address" +msgstr "" + +#: ../inc/user.inc:203 ../inc/user.inc:322 +msgid "URL" +msgstr "" + +#: ../inc/user.inc:206 +msgid "Postal code" +msgstr "" + +#: ../inc/user.inc:207 ../inc/user.inc:316 +msgid "%1 member since" +msgstr "" + +#: ../inc/user.inc:209 +msgid "Change" +msgstr "" + +#: ../inc/user.inc:209 +msgid "email address" +msgstr "" + +#: ../inc/user.inc:210 +msgid "password" +msgstr "" + +#: ../inc/user.inc:211 +msgid "other account info" +msgstr "" + +#: ../inc/user.inc:213 ../inc/user.inc:315 +msgid "User ID" +msgstr "" + +#: ../inc/user.inc:213 +msgid "Used in community functions" +msgstr "" + +#: ../inc/user.inc:216 ../user/weak_auth.php:25 +msgid "Account keys" +msgstr "" + +#: ../inc/user.inc:221 +msgid "Preferences" +msgstr "" + +#: ../inc/user.inc:224 +msgid "When and how BOINC uses your computer" +msgstr "" + +#: ../inc/user.inc:225 +msgid "Computing preferences" +msgstr "" + +#: ../inc/user.inc:228 +msgid "Message boards and private messages" +msgstr "" + +#: ../inc/user.inc:229 ../user/edit_forum_preferences_form.php:31 +msgid "Community preferences" +msgstr "" + +#: ../inc/user.inc:232 +msgid "Preferences for this project" +msgstr "" + +#: ../inc/user.inc:233 ../user/prefs.php:29 +msgid "%1 preferences" +msgstr "" + +#: ../inc/user.inc:239 ../user/bs_sample_index.php:59 +#: ../user/sample_index.php:125 +msgid "Community" +msgstr "" + +#: ../inc/user.inc:243 ../user/pm.php:107 ../user/pm.php:147 +msgid "Delete" +msgstr "" + +#: ../inc/user.inc:245 +msgid "Create" +msgstr "" + +#: ../inc/user.inc:247 ../inc/user.inc:402 ../inc/util.inc:514 +msgid "Profile" +msgstr "" + +#: ../inc/user.inc:250 ../inc/user.inc:375 +msgid "%1 posts" +msgstr "" + +#: ../inc/user.inc:262 ../user/edit_forum_preferences_form.php:51 +msgid "Notifications" +msgstr "" + +#: ../inc/user.inc:269 +msgid "Quit team" +msgstr "" + +#: ../inc/user.inc:271 ../inc/user.inc:288 +msgid "Administer" +msgstr "" + +#: ../inc/user.inc:277 ../inc/user.inc:290 +msgid "(foundership change request pending)" +msgstr "" + +#: ../inc/user.inc:279 +msgid "Member of team" +msgstr "" + +#: ../inc/user.inc:281 +msgid "find a team" +msgstr "" + +#: ../inc/user.inc:292 +msgid "Founder but not member of" +msgstr "" + +#: ../inc/user.inc:298 +msgid "Find friends" +msgstr "" + +#: ../inc/user.inc:305 ../inc/user.inc:307 ../inc/user.inc:385 +#: ../inc/user.inc:387 ../inc/user.inc:396 +msgid "Friends" +msgstr "" + +#: ../inc/user.inc:329 ../inc/user.inc:331 ../user/server_status.php:392 +msgid "Computers" +msgstr "" + +#: ../inc/user.inc:338 +msgid "Donor" +msgstr "" + +#: ../inc/user.inc:378 +msgid "Contact" +msgstr "" + +#: ../inc/user.inc:381 +msgid "This person is a friend" +msgstr "" + +#: ../inc/user.inc:382 ../user/friend.php:238 +msgid "Cancel friendship" +msgstr "" + +#: ../inc/user.inc:385 ../user/friend.php:37 +msgid "Request pending" +msgstr "" + +#: ../inc/user.inc:387 +msgid "Add as friend" +msgstr "" + +#: ../inc/user.inc:446 +msgid "user name cannot have leading or trailing white space" +msgstr "" + +#: ../inc/user.inc:450 +msgid "user name must be nonempty" +msgstr "" + +#: ../inc/user.inc:454 +msgid "user name may not contain HTML tags" +msgstr "" + +#: ../inc/util.inc:131 +msgid "log out" +msgstr "" + +#: ../inc/util.inc:133 +msgid "log in" +msgstr "" + +#: ../inc/util.inc:204 ../user/login_form.php:30 ../user/login_form.php:66 +msgid "Log in" +msgstr "" + +#: ../inc/util.inc:205 ../user/create_account_form.php:40 +msgid "Create an account" +msgstr "" + +#: ../inc/util.inc:206 +msgid "Server status page" +msgstr "" + +#: ../inc/util.inc:248 +msgid "" +"A database error occurred while handling your request; please try again " +"later." +msgstr "" + +#: ../inc/util.inc:257 +msgid "Unable to handle request" +msgstr "" + +#: ../inc/util.inc:277 +msgid "hours" +msgstr "" + +#: ../inc/util.inc:280 +msgid "min" +msgstr "" + +#: ../inc/util.inc:283 +msgid "sec" +msgstr "" + +#: ../inc/util.inc:444 +msgid "Link has timed out. Please click Back, refresh the page, and try again." +msgstr "" + +#: ../inc/util.inc:513 +msgid "View the profile of %1" +msgstr "" + +#: ../inc/util.inc:569 +msgid "Use BBCode tags to format your text" +msgstr "" + +#: ../inc/util.inc:796 +msgid "Project down for maintenance" +msgstr "" + +#: ../inc/util.inc:799 +msgid "%1 is temporarily shut down for maintenance. Please try again later." +msgstr "" + +#: ../inc/util.inc:817 +msgid "Unable to connect to database - please try again later" +msgstr "" + +#: ../inc/util.inc:821 +msgid "Unable to select database - please try again later" +msgstr "" + +#: ../inc/util_ops.inc:109 ../user/get_passwd.php:72 +msgid "Stay logged in on this computer" +msgstr "" + +#: ../user/account_finish.php:34 +msgid "Finish account setup" +msgstr "" + +#: ../user/account_finish.php:41 ../user/create_account_form.php:79 +msgid "Identifies you on our web site. Use your real name or a nickname." +msgstr "" + +#: ../user/account_finish.php:45 ../user/create_account_form.php:98 +msgid "Select the country you want to represent, if any." +msgstr "" + +#: ../user/account_finish.php:51 ../user/create_account_form.php:104 +msgid "Postal or ZIP Code" +msgstr "" + +#: ../user/account_finish.php:51 ../user/create_account_form.php:104 +msgid "Optional" +msgstr "" + +#: ../user/account_finish_action.php:27 +msgid "You must supply a name for your account" +msgstr "" + +#: ../user/account_finish_action.php:30 +msgid "HTML tags not allowed in name" +msgstr "" + +#: ../user/add_venue.php:81 +msgid "Add %1 preferences for %2" +msgstr "" + +#: ../user/apps.php:32 ../user/bs_sample_index.php:55 +#: ../user/sample_index.php:120 +msgid "Applications" +msgstr "" + +#: ../user/apps.php:33 +msgid "" +"%1 currently has the following applications. When you participate in %1, " +"work for one or more of these applications will be assigned to your " +"computer. The current version of the application will be downloaded to your " +"computer. This happens automatically; you don't have to do anything." +msgstr "" + +#: ../user/apps.php:50 +msgid "Platform" +msgstr "" + +#: ../user/apps.php:51 +msgid "Version" +msgstr "" + +#: ../user/apps.php:52 +msgid "Installation time" +msgstr "" + +#: ../user/bbcode.php:23 +msgid "BBCode tags" +msgstr "" + +#: ../user/bbcode.php:25 +msgid "" +"BBCode tags let you format text in your profile and message-board postings.\n" +"It's similar to HTML, but simpler. The tags start with a [ (where you would\n" +"have used %1 in HTML) and end with ] (where you would have used %2 in\n" +"HTML)." +msgstr "" + +#: ../user/bbcode.php:31 +msgid "Examples" +msgstr "" + +#: ../user/bbcode.php:32 +msgid "Bold" +msgstr "" + +#: ../user/bbcode.php:33 +msgid "Italic" +msgstr "" + +#: ../user/bbcode.php:34 +msgid "Underline" +msgstr "" + +#: ../user/bbcode.php:35 +msgid "Superscript" +msgstr "" + +#: ../user/bbcode.php:36 +msgid "Big text" +msgstr "" + +#: ../user/bbcode.php:37 +msgid "Red text" +msgstr "" + +#: ../user/bbcode.php:38 +msgid "link to website" +msgstr "" + +#: ../user/bbcode.php:39 +msgid "Quoted text" +msgstr "" + +#: ../user/bbcode.php:39 +msgid "use for quoted blocks of text" +msgstr "" + +#: ../user/bbcode.php:40 +msgid "use to display an image" +msgstr "" + +#: ../user/bbcode.php:41 +msgid "Code snippet here" +msgstr "" + +#: ../user/bbcode.php:41 +msgid "use to display some code" +msgstr "" + +#: ../user/bbcode.php:42 +msgid "Pre-formatted text" +msgstr "" + +#: ../user/bbcode.php:42 +msgid "use to display pre-formatted (usually monospaced) text" +msgstr "" + +#: ../user/bbcode.php:43 +msgid "Item 1" +msgstr "" + +#: ../user/bbcode.php:43 +msgid "Item2" +msgstr "" + +#: ../user/bbcode.php:43 +msgid "Item 2" +msgstr "" + +#: ../user/bbcode.php:45 +msgid "use to link to Trac ticket on BOINC website" +msgstr "" + +#: ../user/bbcode.php:47 +msgid "use to link to Trac Wiki on BOINC website" +msgstr "" + +#: ../user/bbcode.php:49 +msgid "use to link to SVN changeset on BOINC website" +msgstr "" + +#: ../user/bbcode.php:53 +msgid "" +"If you don't close a tag or don't specify a parameter correctly,\n" +"the raw tag itself will display instead of the formatted text." +msgstr "" + +#: ../user/bs_sample_index.php:44 +msgid "Participants" +msgstr "" + +#: ../user/bs_sample_index.php:46 +msgid "Do work" +msgstr "" + +#: ../user/bs_sample_index.php:47 ../user/bs_sample_index.php:50 +#: ../user/home.php:49 ../project.sample/project.inc:43 +msgid "Your account" +msgstr "" + +#: ../user/bs_sample_index.php:47 ../user/bs_sample_index.php:50 +msgid "view stats, modify preferences" +msgstr "" + +#: ../user/bs_sample_index.php:48 ../user/bs_sample_index.php:53 +#: ../user/team.php:25 +msgid "Teams" +msgstr "" + +#: ../user/bs_sample_index.php:48 ../user/bs_sample_index.php:53 +msgid "create or join a team" +msgstr "" + +#: ../user/bs_sample_index.php:51 ../user/sample_index.php:191 +msgid "User of the day" +msgstr "" + +#: ../user/bs_sample_index.php:52 ../user/server_status.php:239 +msgid "Server status" +msgstr "" + +#: ../user/bs_sample_index.php:60 ../user/profile_menu.php:32 +#: ../user/sample_index.php:127 +msgid "Profiles" +msgstr "" + +#: ../user/bs_sample_index.php:61 +msgid "User search" +msgstr "" + +#: ../user/bs_sample_index.php:64 +msgid "Statistics" +msgstr "" + +#: ../user/bs_sample_index.php:65 ../user/stats.php:30 +#: ../user/top_users.php:116 +msgid "Top participants" +msgstr "" + +#: ../user/bs_sample_index.php:66 ../user/stats.php:31 +msgid "Top computers" +msgstr "" + +#: ../user/bs_sample_index.php:67 ../user/stats.php:32 ../user/team.php:46 +msgid "Top teams" +msgstr "" + +#: ../user/bs_sample_index.php:68 ../user/gpu_list.php:182 +#: ../user/stats.php:33 +msgid "Top GPU models" +msgstr "" + +#: ../user/bs_sample_index.php:70 +msgid "Languages" +msgstr "" + +#: ../user/bs_sample_index.php:149 ../user/info.php:24 +#: ../user/sample_index.php:79 +msgid "Read our rules and policies" +msgstr "" + +#: ../user/create_account_action.php:26 +msgid "Can't create account" +msgstr "" + +#: ../user/create_account_action.php:29 +msgid "Click your browser's Back button to try again." +msgstr "" + +#: ../user/create_account_action.php:47 +msgid "Your reCAPTCHA response was not correct. Please try again." +msgstr "" + +#: ../user/create_account_action.php:70 +msgid "You must supply an invitation code to create an account." +msgstr "" + +#: ../user/create_account_action.php:73 +msgid "The invitation code you gave is not valid." +msgstr "" + +#: ../user/create_account_action.php:84 +msgid "" +"Invalid email address: you must enter a valid address of the form name@domain" +msgstr "" + +#: ../user/create_account_action.php:88 +msgid "There's already an account with that email address." +msgstr "" + +#: ../user/create_account_action.php:94 ../user/edit_passwd_action.php:33 +msgid "New passwords are different" +msgstr "" + +#: ../user/create_account_action.php:101 ../user/edit_passwd_action.php:41 +msgid "Passwords may only include ASCII characters." +msgstr "" + +#: ../user/create_account_action.php:106 ../user/edit_passwd_action.php:45 +msgid "New password is too short: minimum password length is %1 characters." +msgstr "" + +#: ../user/create_account_action.php:127 +msgid "Couldn't create account" +msgstr "" + +#: ../user/create_account_form.php:44 +msgid "" +"NOTE: If you use the BOINC Manager, don't use this form. Just run BOINC, " +"select Add Project, and enter an email address and password." +msgstr "" + +#: ../user/create_account_form.php:61 +msgid "" +"This account will belong to the team %1 and will have the project " +"preferences of its founder." +msgstr "" + +#: ../user/create_account_form.php:73 +msgid "Invitation Code" +msgstr "" + +#: ../user/create_account_form.php:73 +msgid "A valid invitation code is required to create an account." +msgstr "" + +#: ../user/create_account_form.php:83 +msgid "Email Address" +msgstr "" + +#: ../user/create_account_form.php:83 +msgid "Must be a valid address of the form 'name@domain'." +msgstr "" + +#: ../user/create_account_form.php:92 ../user/edit_email_form.php:47 +msgid "Password" +msgstr "" + +#: ../user/create_account_form.php:93 +msgid "Must be at least %1 characters" +msgstr "" + +#: ../user/create_account_form.php:96 +msgid "Confirm password" +msgstr "" + +#: ../user/create_account_form.php:113 +msgid "Please enter the words shown in the image" +msgstr "" + +#: ../user/create_account_form.php:119 +msgid "Create account" +msgstr "" + +#: ../user/create_profile.php:50 +msgid "Picture" +msgstr "" + +#: ../user/create_profile.php:64 +msgid "%1 Your profile picture is shown to the left." +msgstr "" + +#: ../user/create_profile.php:66 +msgid "" +"To replace it, click the \"Browse\" button and select a JPEG or PNG file (%1 " +"or less)." +msgstr "" + +#: ../user/create_profile.php:69 +msgid "To remove it from your profile, check this box:" +msgstr "" + +#: ../user/create_profile.php:77 +msgid "" +"If you would like include a picture with your profile, click the \"Browse\" " +"button and select a JPEG or PNG file. Please select images of %1 or less." +msgstr "" + +#: ../user/create_profile.php:89 +msgid "Language" +msgstr "" + +#: ../user/create_profile.php:92 +msgid "Select the language in which your profile is written:" +msgstr "" + +#: ../user/create_profile.php:104 +msgid "Submit profile" +msgstr "" + +#: ../user/create_profile.php:110 +msgid "Please enter the words shown in the image." +msgstr "" + +#: ../user/create_profile.php:115 +msgid "Create/edit profile" +msgstr "" + +#: ../user/create_profile.php:137 +msgid "The format of your uploaded image is not supported." +msgstr "" + +#: ../user/create_profile.php:166 +msgid "" +"Your %1profile%2 lets you share your opinions and background with the %3 " +"community." +msgstr "" + +#: ../user/create_profile.php:213 +msgid "Your ReCaptcha response was not correct. Please try again." +msgstr "" + +#: ../user/create_profile.php:222 +msgid "" +"Your first response was flagged as spam by the Akismet anti-spam system. " +"Please modify your text and try again." +msgstr "" + +#: ../user/create_profile.php:230 +msgid "" +"Your second response was flagged as spam by the Akismet anti-spam system. " +"Please modify your text and try again." +msgstr "" + +#: ../user/create_profile.php:246 +msgid "Your profile submission was empty." +msgstr "" + +#: ../user/create_profile.php:285 +msgid "Could not update the profile: database error" +msgstr "" + +#: ../user/create_profile.php:297 +msgid "Could not create the profile: database error" +msgstr "" + +#: ../user/create_profile.php:302 +msgid "Profile saved" +msgstr "" + +#: ../user/create_profile.php:304 +msgid "" +"Congratulations! Your profile was successfully entered into our database." +msgstr "" + +#: ../user/create_profile.php:306 +msgid "%1View your profile%2" +msgstr "" + +#: ../user/create_profile.php:315 +msgid "Create a profile" +msgstr "" + +#: ../user/create_profile.php:343 +msgid "" +"To prevent spam, an average credit of %1 or greater is required to create or " +"edit a profile. We apologize for this inconvenience." +msgstr "" + +#: ../user/delete_account.php:57 +msgid "Couldn't delete account" +msgstr "" + +#: ../user/delete_account.php:59 +msgid "Account deleted" +msgstr "" + +#: ../user/delete_account.php:60 +msgid "Your account has been deleted." +msgstr "" + +#: ../user/delete_account.php:64 +msgid "Confirm delete account" +msgstr "" + +#: ../user/delete_account.php:67 +msgid "" +"Deleting your account will remove all of your\n" +"personal information from our servers,\n" +"including your profile and message-board posts.\n" +"No jobs will be issued to any computers attached\n" +"to this account." +msgstr "" + +#: ../user/delete_account.php:73 +msgid "" +"This cannot be undone.\n" +"Once your account has been deleted, you cannot get it back." +msgstr "" + +#: ../user/delete_account.php:76 +msgid "Are you sure you want to delete your account?" +msgstr "" + +#: ../user/delete_account.php:79 ../user/delete_profile.php:52 +#: ../user/donations.php:322 ../user/donations.php:326 ../user/friend.php:238 +#: ../user/prefs_remove.php:52 ../user/user_search.php:59 +#: ../user/user_search.php:64 +msgid "Yes" +msgstr "" + +#: ../user/delete_account.php:79 +msgid "Delete this account" +msgstr "" + +#: ../user/delete_account.php:80 ../user/delete_profile.php:53 +#: ../user/friend.php:239 ../user/user_search.php:58 +#: ../user/user_search.php:63 +msgid "No" +msgstr "" + +#: ../user/delete_account.php:80 +msgid "Do not delete this account" +msgstr "" + +#: ../user/delete_profile.php:30 +msgid "couldn't delete profile - please try again later" +msgstr "" + +#: ../user/delete_profile.php:33 +msgid "Delete Confirmation" +msgstr "" + +#: ../user/delete_profile.php:35 +msgid "Your profile has been deleted." +msgstr "" + +#: ../user/delete_profile.php:40 +msgid "Profile delete confirmation" +msgstr "" + +#: ../user/delete_profile.php:43 +msgid "Are you sure?" +msgstr "" + +#: ../user/delete_profile.php:44 +msgid "" +"Deleted profiles are gone forever and cannot be recovered --\n" +"you will have to start from scratch\n" +"if you want another profile in the future." +msgstr "" + +#: ../user/delete_profile.php:48 +msgid "" +"If you're sure, click 'Yes'\n" +"to remove your profile from our database." +msgstr "" + +#: ../user/delete_profile.php:52 +msgid "Delete my profile" +msgstr "" + +#: ../user/delete_profile.php:53 +msgid "Do not delete my profile" +msgstr "" + +#: ../user/donated.php:25 +msgid "PayPal - Transaction Completed" +msgstr "" + +#: ../user/donated.php:28 +msgid "Thank you for donating!" +msgstr "" + +#: ../user/donated.php:29 +msgid "Your donation for has been completed." +msgstr "" + +#: ../user/donated.php:30 +msgid "" +"Your donation will be added to the progress bar after confirmation by PayPal." +msgstr "" + +#: ../user/donated.php:32 +msgid "You have canceled your donation." +msgstr "" + +#: ../user/donations.php:24 +msgid "This project is not accepting donations." +msgstr "" + +#: ../user/donations.php:34 +msgid "%1 donations" +msgstr "" + +#: ../user/donations.php:39 +msgid "" +"This project is accepting donations via\n" +"%1." +msgstr "" + +#: ../user/donations.php:42 +msgid "" +"To donate, fill in the amount you want to donate using the field below.\n" +" PayPal is accepting multiple currencies\n" +" (Canadian Dollars, Euros, Pounds Sterling, U.S. Dollars,\n" +" Yen, Australian Dollars, New Zealand Dollars,\n" +" Swiss Francs, Hong Kong Dollars, Singapore Dollars, Swedish Kronor,\n" +" Danish Kroner, Polish Zloty, Norwegian Kroner,\n" +" Hungarian Forint, Czech Koruna).\n" +" You can use included currency converter\n" +" to see the donation amount equivalent in different currencies\n" +" (please note that the rates are only estimates\n" +" and the actual amount may differ)." +msgstr "" + +#: ../user/donations.php:316 +msgid "Amount you would like to donate" +msgstr "" + +#: ../user/donations.php:317 +msgid "Estimated value in" +msgstr "" + +#: ../user/donations.php:320 ../user/donations.php:324 +msgid "Anonymous donation" +msgstr "" + +#: ../user/donations.php:320 +msgid "" +"Select this if you dont want your name and account number displayed in\n" +"donator lists.
    If not checked, you will be recorded as user ID %1" +msgstr "" + +#: ../user/donations.php:324 +msgid "To assign the donation with your user ID, please log in." +msgstr "" + +#: ../user/donations.php:328 +msgid "Proceed" +msgstr "" + +#: ../user/donations.php:329 +msgid "Donations are accepted through" +msgstr "" + +#: ../user/download_network.php:25 +msgid "Download BOINC add-on software" +msgstr "" + +#: ../user/download_network.php:28 +msgid "You can download applications in several categories." +msgstr "" + +#: ../user/download_network.php:31 +msgid "" +"These applications are not endorsed by %1 and you use them at your own risk." +msgstr "" + +#: ../user/download_network.php:33 +msgid "" +"We do not provide instructions for installing these applications.\n" +"However, the author may have provided some help on installing or " +"uninstalling the application. \n" +"If this is not enough you should contact the author." +msgstr "" + +#: ../user/download_network.php:36 +msgid "Instructions for installing and running BOINC are %1here%2." +msgstr "" + +#: ../user/download_network.php:38 +msgid "This list is managed centrally at %1the BOINC website%2." +msgstr "" + +#: ../user/edit_email_action.php:31 +msgid "Change email address of account" +msgstr "" + +#: ../user/edit_email_action.php:34 ../user/edit_email_action.php:36 +msgid "New email address '%1' is invalid." +msgstr "" + +#: ../user/edit_email_action.php:38 +msgid "New email address is same as existing address. Nothing is changed." +msgstr "" + +#: ../user/edit_email_action.php:42 +msgid "There's already an account with that email address" +msgstr "" + +#: ../user/edit_email_action.php:54 +msgid "Invalid password." +msgstr "" + +#: ../user/edit_email_action.php:62 +msgid "The email address of your account is now %1." +msgstr "" + +#: ../user/edit_email_action.php:64 +msgid "Please %1validate this email address%2." +msgstr "" + +#: ../user/edit_email_action.php:67 +msgid "" +"We can't update your email address due to a database problem. Please try " +"again later." +msgstr "" + +#: ../user/edit_email_form.php:27 ../user/edit_email_form.php:51 +msgid "Change email address" +msgstr "" + +#: ../user/edit_email_form.php:36 +msgid "Change the email address of your account" +msgstr "" + +#: ../user/edit_email_form.php:37 +msgid "New email address" +msgstr "" + +#: ../user/edit_email_form.php:38 +msgid "Must be a valid address of the form 'name@domain'" +msgstr "" + +#: ../user/edit_email_form.php:48 +msgid "No password?" +msgstr "" + +#: ../user/edit_forum_preferences_action.php:33 +msgid "Confirm reset" +msgstr "" + +#: ../user/edit_forum_preferences_action.php:34 +msgid "" +"This action will erase any changes you have made in your community " +"preferences. To cancel, click your browser's Back button." +msgstr "" + +#: ../user/edit_forum_preferences_action.php:38 +msgid "Reset preferences" +msgstr "" + +#: ../user/edit_forum_preferences_action.php:88 +msgid "Error: Not the right kind of file, only PNG and JPEG are supported." +msgstr "" + +#: ../user/edit_forum_preferences_action.php:114 +msgid "Your signature was too long, please keep it less than 250 characters." +msgstr "" + +#: ../user/edit_forum_preferences_action.php:132 +#: ../user/edit_forum_preferences_action.php:146 +msgid "No such user: %1" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:56 +msgid "" +"How should we notify you of new private messages, friend requests, posts in " +"subscribed threads, and other events?" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:57 +msgid "On my Account page (no email)" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:58 +msgid "Immediately, by email" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:59 +msgid "In a single daily email" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:75 +msgid "Message-board identity" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:76 +msgid "Avatar" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:77 +msgid "An image representing you on the message boards." +msgstr "" + +#: ../user/edit_forum_preferences_form.php:78 +msgid "Format: JPG or PNG. Size: at most 4 KB, 100x100 pixels" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:80 +msgid "Don't use an avatar" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:82 +msgid "Use a Globally Recognized Avatar provided by %1" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:84 +msgid "Use this uploaded avatar:" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:87 +msgid "Avatar preview" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:87 +msgid "This is how your avatar will look" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:96 +msgid "Signature for message board posts" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:99 +msgid "" +"Check out %1various free services%2\n" +"
    providing dynamic 'signature images'\n" +"
    showing your latest credit info, project news, etc." +msgstr "" + +#: ../user/edit_forum_preferences_form.php:104 +msgid "characters remaining" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:105 +msgid "Attach signature by default" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:108 +msgid "Signature preview" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:109 +msgid "This is how your signature will look in the forums" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:127 +msgid "Message display" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:129 +msgid "What to display" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:130 +msgid "Hide avatar images" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:131 +msgid "Hide signatures" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:132 +msgid "Show images as links" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:133 +msgid "Open links in new window/tab" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:134 +msgid "Highlight special users" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:135 +msgid "Display this many messages per page" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:139 +msgid "How to sort" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:140 +msgid "Threads:" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:140 +msgid "Posts:" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:141 +msgid "Jump to first new post in thread automatically" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:142 +msgid "Don't move sticky posts to top" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:148 +msgid "Message filtering" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:164 +msgid "Filtered users" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:165 +msgid "Ignore message board posts and private messages from these users." +msgstr "" + +#: ../user/edit_forum_preferences_form.php:167 +msgid "User ID (For instance: 123456789)" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:168 ../user/pm.php:251 +msgid "Add user to filter" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:173 +msgid "Click here to update preferences" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:175 +#: ../user/edit_forum_preferences_form.php:177 +msgid "Reset" +msgstr "" + +#: ../user/edit_forum_preferences_form.php:176 +msgid "Or click here to reset preferences to the defaults" +msgstr "" + +#: ../user/edit_passwd_action.php:50 +msgid "Invalid account key" +msgstr "" + +#: ../user/edit_passwd_action.php:55 +msgid "No account with that email address was found" +msgstr "" + +#: ../user/edit_passwd_action.php:59 +msgid "Invalid password" +msgstr "" + +#: ../user/edit_passwd_action.php:63 ../user/edit_passwd_form.php:25 +#: ../user/edit_passwd_form.php:55 +msgid "Change password" +msgstr "" + +#: ../user/edit_passwd_action.php:67 +msgid "Your password has been changed." +msgstr "" + +#: ../user/edit_passwd_action.php:69 +msgid "" +"We can't update your password due to a database problem. Please try again " +"later." +msgstr "" + +#: ../user/edit_passwd_form.php:39 +msgid "You can identify yourself using either" +msgstr "" + +#: ../user/edit_passwd_form.php:41 +msgid "your email address and old password" +msgstr "" + +#: ../user/edit_passwd_form.php:42 +msgid "your account key" +msgstr "" + +#: ../user/edit_passwd_form.php:46 +msgid "Current password" +msgstr "" + +#: ../user/edit_passwd_form.php:48 +msgid "OR: Account key" +msgstr "" + +#: ../user/edit_passwd_form.php:49 +msgid "Get account key by email" +msgstr "" + +#: ../user/edit_passwd_form.php:53 +msgid "New password" +msgstr "" + +#: ../user/edit_passwd_form.php:54 +msgid "New password, again" +msgstr "" + +#: ../user/edit_user_info_action.php:31 +msgid "HTML tags are not allowed in your name." +msgstr "" + +#: ../user/edit_user_info_action.php:34 +msgid "You must supply a name for your account." +msgstr "" + +#: ../user/edit_user_info_action.php:58 +msgid "Couldn't update user info." +msgstr "" + +#: ../user/edit_user_info_form.php:27 +msgid "Edit account information" +msgstr "" + +#: ../user/edit_user_info_form.php:32 +msgid "Name %1 real name or nickname%2" +msgstr "" + +#: ../user/edit_user_info_form.php:35 +msgid "URL %1 of your web page; optional%2" +msgstr "" + +#: ../user/edit_user_info_form.php:43 +msgid "Postal (ZIP) code %1 Optional%2" +msgstr "" + +#: ../user/edit_user_info_form.php:47 +msgid "Update info" +msgstr "" + +#: ../user/explain_state.php:27 +msgid "Server states" +msgstr "" + +#: ../user/explain_state.php:30 +msgid "" +"A tasks's server state indicates whether the task has been sent to a " +"computer, and if so whether the computer has finished it. Possible values " +"are:" +msgstr "" + +#: ../user/explain_state.php:35 +msgid "" +"The task is not ready to send (for example, because its input files are " +"unavailable)" +msgstr "" + +#: ../user/explain_state.php:38 +msgid "The task is ready to send, but hasn't been sent yet." +msgstr "" + +#: ../user/explain_state.php:40 +msgid "In Progress" +msgstr "" + +#: ../user/explain_state.php:41 +msgid "The task has been sent; waiting for completion." +msgstr "" + +#: ../user/explain_state.php:44 +msgid "" +"The task has been sent to a computer and either it has timed out or the " +"computer has reported its completion." +msgstr "" + +#: ../user/explain_state.php:49 +msgid "Outcomes" +msgstr "" + +#: ../user/explain_state.php:52 +msgid "" +"A tasks's outcome is defined if its server state is over. " +"Possible values are:" +msgstr "" + +#: ../user/explain_state.php:57 +msgid "" +"The task was sent to a computer, but the computer has not yet completed the " +"work and reported the outcome." +msgstr "" + +#: ../user/explain_state.php:60 +msgid "A computer completed and reported the task successfully." +msgstr "" + +#: ../user/explain_state.php:63 +msgid "" +"The server wasn't able to send the task to a computer (perhaps because its " +"resource requirements were too large)" +msgstr "" + +#: ../user/explain_state.php:65 +msgid "Client error" +msgstr "" + +#: ../user/explain_state.php:66 +msgid "The task was sent to a computer and an error occurred." +msgstr "" + +#: ../user/explain_state.php:69 +msgid "" +"The task was sent to a computer and no reply was received within the time " +"limit." +msgstr "" + +#: ../user/explain_state.php:72 +msgid "" +"The task wasn't sent to a computer because enough other tasks were completed " +"for this workunit." +msgstr "" + +#: ../user/explain_state.php:75 +msgid "" +"The task was reported but could not be validated, typically because the " +"output files were lost on the server." +msgstr "" + +#: ../user/explain_state.php:80 +msgid "Client states" +msgstr "" + +#: ../user/explain_state.php:81 +msgid "" +"A result's client state indicates the stage of processing at which an " +"error occurred." +msgstr "" + +#: ../user/explain_state.php:86 +msgid "The computer has not yet completed the task." +msgstr "" + +#: ../user/explain_state.php:89 +msgid "The computer completed the task successfully." +msgstr "" + +#: ../user/explain_state.php:92 +msgid "The computer couldn't download the application or input files." +msgstr "" + +#: ../user/explain_state.php:95 +msgid "An error occurred during computation." +msgstr "" + +#: ../user/explain_state.php:98 +msgid "The computer couldn't upload the output files." +msgstr "" + +#: ../user/explain_state.php:103 +msgid "Time reported and deadline" +msgstr "" + +#: ../user/explain_state.php:106 +msgid "" +"A task's Time reported or deadline field depends on whether the task " +"has been reported yet:" +msgstr "" + +#: ../user/explain_state.php:110 +msgid "Already reported" +msgstr "" + +#: ../user/explain_state.php:110 +msgid "The date/time it was reported" +msgstr "" + +#: ../user/explain_state.php:111 +msgid "Not reported yet, deadline in the future" +msgstr "" + +#: ../user/explain_state.php:112 +msgid "Deadline, shown in green." +msgstr "" + +#: ../user/explain_state.php:114 +msgid "Not reported yet, deadline in the past" +msgstr "" + +#: ../user/explain_state.php:115 +msgid "Deadline, shown in red." +msgstr "" + +#: ../user/explain_state.php:120 +msgid "Unknown field" +msgstr "" + +#: ../user/ffmail_action.php:47 +msgid "Email preview" +msgstr "" + +#: ../user/ffmail_action.php:48 +msgid "Your email will appear as follows:" +msgstr "" + +#: ../user/ffmail_action.php:57 +msgid "Send email" +msgstr "" + +#: ../user/ffmail_action.php:59 +msgid "Use your browser's back button to return to message form" +msgstr "" + +#: ../user/ffmail_action.php:63 +msgid "Sending emails" +msgstr "" + +#: ../user/ffmail_action.php:84 +msgid "email sent successfully to %1" +msgstr "" + +#: ../user/ffmail_action.php:86 +msgid "failed to send email to %1: %2" +msgstr "" + +#: ../user/ffmail_action.php:92 +msgid "Thanks for telling your friends about %1" +msgstr "" + +#: ../user/ffmail_action.php:94 +msgid "" +"You forgot to enter your friends' names and/or email addresses; Please %" +"1return to the form%2 and enter them." +msgstr "" + +#: ../user/ffmail_form.php:30 +msgid "" +"This project hasn't created an email message - please notify its " +"administrators" +msgstr "" + +#: ../user/ffmail_form.php:33 +msgid "Tell your friends about %1" +msgstr "" + +#: ../user/ffmail_form.php:37 +msgid "Help us by telling your friends, family and coworkers about %1" +msgstr "" + +#: ../user/ffmail_form.php:39 +msgid "" +"Fill in this form with the names and email addresses of people you think " +"might be interested in %1. We'll send them an email in your name, and you " +"can add your own message if you like." +msgstr "" + +#: ../user/ffmail_form.php:42 +msgid "Your name:" +msgstr "" + +#: ../user/ffmail_form.php:42 +msgid "Your email address:" +msgstr "" + +#: ../user/ffmail_form.php:48 +msgid "Friend's name:" +msgstr "" + +#: ../user/ffmail_form.php:48 +msgid "Friend's email address:" +msgstr "" + +#: ../user/ffmail_form.php:56 +msgid "Additional message (optional)" +msgstr "" + +#: ../user/ffmail_form.php:59 +msgid "Send" +msgstr "" + +#: ../user/forum_banishment_vote.php:35 +#: ../user/forum_banishment_vote_action.php:33 +msgid "You are not authorized to banish users." +msgstr "" + +#: ../user/forum_banishment_vote.php:41 ../user/forum_banishment_vote.php:46 +msgid "Banishment Vote" +msgstr "" + +#: ../user/forum_banishment_vote.php:50 +msgid "No user with this ID found." +msgstr "" + +#: ../user/forum_banishment_vote.php:54 ../user/forum_moderate_post.php:76 +msgid "User is already banished" +msgstr "" + +#: ../user/forum_banishment_vote.php:59 ../user/forum_moderate_post.php:79 +msgid "" +"Are you sure you want to banish %1?
    This will prevent %1 from posting " +"for chosen time period.
    It should be done only if %1 has consistently " +"exhibited trollish behavior." +msgstr "" + +#: ../user/forum_banishment_vote.php:61 +msgid "" +"Select the reason category, optionally write a longer description of why the " +"user should be banished." +msgstr "" + +#: ../user/forum_banishment_vote.php:62 ../user/forum_moderate_thread.php:50 +msgid "Category" +msgstr "" + +#: ../user/forum_banishment_vote.php:64 +#: ../user/forum_banishment_vote_action.php:57 +#: ../user/forum_moderate_post.php:55 ../user/forum_moderate_thread.php:52 +msgid "Obscene" +msgstr "" + +#: ../user/forum_banishment_vote.php:65 +#: ../user/forum_banishment_vote_action.php:59 +#: ../user/forum_moderate_post.php:56 ../user/forum_moderate_thread.php:53 +msgid "Flame/Hate mail" +msgstr "" + +#: ../user/forum_banishment_vote.php:66 +#: ../user/forum_banishment_vote_action.php:61 +#: ../user/forum_moderate_post.php:59 +msgid "User Request" +msgstr "" + +#: ../user/forum_banishment_vote.php:67 +#: ../user/forum_banishment_vote_action.php:63 +#: ../user/forum_moderate_post.php:60 ../user/forum_moderate_thread.php:55 +msgid "Other" +msgstr "" + +#: ../user/forum_banishment_vote.php:69 ../user/forum_moderate_post.php:53 +#: ../user/forum_moderate_thread.php:85 +msgid "Reason" +msgstr "" + +#: ../user/forum_banishment_vote.php:69 ../user/forum_moderate_thread.php:85 +msgid "Mailed if nonempty" +msgstr "" + +#: ../user/forum_banishment_vote.php:74 +msgid "Proceed with vote" +msgstr "" + +#: ../user/forum_banishment_vote_action.php:39 +#: ../user/forum_moderate_post_action.php:63 +msgid "You must specify an action..." +msgstr "" + +#: ../user/forum_edit.php:41 +msgid "" +"You can no longer edit this post.
    Posts can only be edited at most %1 " +"minutes after they have been created." +msgstr "" + +#: ../user/forum_edit.php:47 +msgid "You are not authorized to edit this post." +msgstr "" + +#: ../user/forum_edit.php:86 ../user/forum_search.php:72 +msgid "Forum" +msgstr "" + +#: ../user/forum_edit.php:110 +msgid "Edit your message" +msgstr "" + +#: ../user/forum_edit.php:115 ../user/forum_edit.php:120 +#: ../user/forum_post.php:109 ../user/forum_post.php:111 +#: ../user/team_forum.php:69 +msgid "Title" +msgstr "" + +#: ../user/forum_edit.php:144 ../user/forum_post.php:129 +msgid "Add my signature to this post" +msgstr "" + +#: ../user/forum_forum.php:41 +msgid "Not visible to you" +msgstr "" + +#: ../user/forum_forum.php:80 +msgid "Team message board for %1" +msgstr "" + +#: ../user/forum_forum.php:96 +msgid "New thread" +msgstr "" + +#: ../user/forum_forum.php:96 +msgid "Add a new thread to this forum" +msgstr "" + +#: ../user/forum_forum.php:116 +msgid "This message board is available as an %1RSS feed%2" +msgstr "" + +#: ../user/forum_forum.php:174 +msgid "This thread is hidden" +msgstr "" + +#: ../user/forum_forum.php:178 +msgid "This thread is sticky and locked, and you haven't read it yet" +msgstr "" + +#: ../user/forum_forum.php:178 +msgid "sticky/locked/unread" +msgstr "" + +#: ../user/forum_forum.php:180 +msgid "This thread is sticky and you haven't read it yet" +msgstr "" + +#: ../user/forum_forum.php:180 +msgid "sticky/unread" +msgstr "" + +#: ../user/forum_forum.php:184 +msgid "You haven't read this thread yet, and it's locked" +msgstr "" + +#: ../user/forum_forum.php:184 +msgid "unread/locked" +msgstr "" + +#: ../user/forum_forum.php:186 +msgid "You haven't read this thread yet" +msgstr "" + +#: ../user/forum_forum.php:192 +msgid "This thread is sticky and locked" +msgstr "" + +#: ../user/forum_forum.php:192 +msgid "sticky/locked" +msgstr "" + +#: ../user/forum_forum.php:194 +msgid "This thread is sticky" +msgstr "" + +#: ../user/forum_forum.php:194 +msgid "sticky" +msgstr "" + +#: ../user/forum_forum.php:198 +msgid "This thread is locked" +msgstr "" + +#: ../user/forum_forum.php:198 +msgid "locked" +msgstr "" + +#: ../user/forum_forum.php:200 +msgid "You read this thread" +msgstr "" + +#: ../user/forum_forum.php:200 +msgid "read" +msgstr "" + +#: ../user/forum_help_desk.php:27 +msgid "Questions and answers" +msgstr "" + +#: ../user/forum_help_desk.php:30 +msgid "" +"Talk live via Skype with a volunteer, in any of several languages. Go to %" +"1BOINC Online Help%2." +msgstr "" + +#: ../user/forum_help_desk.php:44 ../user/forum_index.php:92 +msgid "Topic" +msgstr "" + +#: ../user/forum_help_desk.php:45 +msgid "Questions" +msgstr "" + +#: ../user/forum_index.php:53 ../user/team_forum.php:68 +msgid "Discussion among members of %1" +msgstr "" + +#: ../user/forum_index.php:69 +msgid "%1 Message boards" +msgstr "" + +#: ../user/forum_index.php:78 +msgid "" +"If you have a question or problem, please use the %1Questions & Answers%2 " +"section of the message boards." +msgstr "" + +#: ../user/forum_index.php:123 +msgid "Subscribed threads" +msgstr "" + +#: ../user/forum_moderate_post.php:43 +msgid "Moderate post" +msgstr "" + +#: ../user/forum_moderate_post.php:52 +msgid "Hide post" +msgstr "" + +#: ../user/forum_moderate_post.php:57 ../user/forum_moderate_thread.php:54 +msgid "Commercial spam" +msgstr "" + +#: ../user/forum_moderate_post.php:58 +msgid "Doublepost" +msgstr "" + +#: ../user/forum_moderate_post.php:63 +msgid "Move post" +msgstr "" + +#: ../user/forum_moderate_post.php:65 +msgid "Destination thread ID:" +msgstr "" + +#: ../user/forum_moderate_post.php:78 +msgid "Banish user" +msgstr "" + +#: ../user/forum_moderate_post.php:80 +msgid "Ban duration" +msgstr "" + +#: ../user/forum_moderate_post.php:81 +msgid "4 hours" +msgstr "" + +#: ../user/forum_moderate_post.php:82 ../user/forum_search.php:45 +msgid "1 day" +msgstr "" + +#: ../user/forum_moderate_post.php:83 +msgid "1 week" +msgstr "" + +#: ../user/forum_moderate_post.php:84 +msgid "2 weeks" +msgstr "" + +#: ../user/forum_moderate_post.php:85 +msgid "1 month" +msgstr "" + +#: ../user/forum_moderate_post.php:86 +msgid "Forever" +msgstr "" + +#: ../user/forum_moderate_post.php:96 +msgid "Optional explanation %1 This is included in email to user.%2" +msgstr "" + +#: ../user/forum_moderate_post.php:101 ../user/forum_moderate_thread.php:91 +#: ../user/forum_post.php:130 ../user/forum_report_post.php:85 +#: ../user/forum_rss.php:55 ../user/friend.php:81 ../user/get_passwd.php:41 +#: ../user/get_passwd.php:75 +msgid "OK" +msgstr "" + +#: ../user/forum_moderate_post_action.php:57 +msgid "You are not authorized to moderate this post." +msgstr "" + +#: ../user/forum_moderate_post_action.php:85 +msgid "Can't move to different category type" +msgstr "" + +#: ../user/forum_moderate_post_action.php:89 +msgid "Can't move to different category" +msgstr "" + +#: ../user/forum_moderate_post_action.php:110 +msgid "Not authorized to banish users" +msgstr "" + +#: ../user/forum_moderate_post_action.php:126 +msgid "Banishment" +msgstr "" + +#: ../user/forum_moderate_post_action.php:128 +msgid "User %1 has been banished." +msgstr "" + +#: ../user/forum_moderate_post_action.php:131 +msgid "Action failed: possible database problem" +msgstr "" + +#: ../user/forum_moderate_thread.php:33 +msgid "not authorized" +msgstr "" + +#: ../user/forum_moderate_thread.php:36 +msgid "Moderate thread '%1'" +msgstr "" + +#: ../user/forum_moderate_thread.php:48 +msgid "" +"Select the reason category, or write a longer description of why you're " +"hiding or locking the thread; then press OK." +msgstr "" + +#: ../user/forum_moderate_thread.php:72 +msgid "Current forum" +msgstr "" + +#: ../user/forum_moderate_thread.php:73 +msgid "Destination forum" +msgstr "" + +#: ../user/forum_moderate_thread.php:77 +msgid "New title:" +msgstr "" + +#: ../user/forum_post.php:40 +msgid "" +"Only project admins may create a thread here. However, you may reply to " +"existing threads." +msgstr "" + +#: ../user/forum_post.php:60 +msgid "" +"Your message was flagged as spam by the Akismet anti-spam system. Please " +"modify your text and try again." +msgstr "" + +#: ../user/forum_post.php:70 +msgid "Create new thread" +msgstr "" + +#: ../user/forum_post.php:100 +msgid "Create a new thread" +msgstr "" + +#: ../user/forum_post.php:105 +msgid "Remember to add a title" +msgstr "" + +#: ../user/forum_post.php:127 +msgid "Show this item as a Notice in the BOINC Manager" +msgstr "" + +#: ../user/forum_post.php:127 +msgid "Do so only for items likely to be of interest to all volunteers." +msgstr "" + +#: ../user/forum_rate.php:26 +msgid "Rating offline" +msgstr "" + +#: ../user/forum_rate.php:27 +msgid "This function is turned off by the project" +msgstr "" + +#: ../user/forum_rate.php:58 +msgid "You need more average or total credit to rate a post." +msgstr "" + +#: ../user/forum_rate.php:62 +msgid "You have already rated this post." +msgstr "" + +#: ../user/forum_rate.php:62 ../user/forum_rate.php:78 +#: ../user/forum_rate.php:83 ../user/forum_report_post.php:69 +#: ../user/forum_report_post.php:94 ../user/forum_subscribe.php:54 +#: ../user/forum_subscribe.php:69 ../user/forum_thread_status.php:51 +msgid "Return to thread" +msgstr "" + +#: ../user/forum_rate.php:72 +msgid "Input Recorded" +msgstr "" + +#: ../user/forum_rate.php:73 +msgid "Your input has been recorded. Thanks for your help." +msgstr "" + +#: ../user/forum_rate.php:75 +msgid "Vote Registered" +msgstr "" + +#: ../user/forum_rate.php:76 +msgid "Your rating has been recorded. Thanks for your input." +msgstr "" + +#: ../user/forum_rate.php:80 +msgid "Vote Submission Problem" +msgstr "" + +#: ../user/forum_reply.php:73 +msgid "" +"Your post has been flagged as spam by the Akismet anti-spam system. Please " +"modify your text and try again." +msgstr "" + +#: ../user/forum_reply.php:88 ../user/forum_thread.php:158 +#: ../user/forum_thread.php:274 +msgid "Post to thread" +msgstr "" + +#: ../user/forum_reply.php:137 +msgid "Message:" +msgstr "" + +#: ../user/forum_reply.php:140 +msgid "reply to %1Message ID%2:" +msgstr "" + +#: ../user/forum_reply.php:166 +msgid "Post reply" +msgstr "" + +#: ../user/forum_reply.php:169 +msgid "Add my signature to this reply" +msgstr "" + +#: ../user/forum_report_post.php:45 +msgid "You need more average or total credit to report a post." +msgstr "" + +#: ../user/forum_report_post.php:65 +msgid "Report Registered" +msgstr "" + +#: ../user/forum_report_post.php:66 +msgid "Your report has been recorded. Thanks for your input." +msgstr "" + +#: ../user/forum_report_post.php:67 +msgid "" +"A moderator will now look at your report and decide what will happen - this " +"may take a little while, so please be patient" +msgstr "" + +#: ../user/forum_report_post.php:71 +msgid "Report a forum post" +msgstr "" + +#: ../user/forum_report_post.php:73 +msgid "" +"Before reporting this post, consider using the +/- rating system instead. If " +"enough users rate a post negatively it will eventually be hidden.
    You " +"can find the rating system at the bottom of the post." +msgstr "" + +#: ../user/forum_report_post.php:80 +msgid "Report post" +msgstr "" + +#: ../user/forum_report_post.php:81 +msgid "" +"Why do you find the post offensive: %1Please include enough information so " +"that a person that\n" +"has not yet read the thread will quickly be able to identify the issue.%2" +msgstr "" + +#: ../user/forum_report_post.php:90 +msgid "Report not registered" +msgstr "" + +#: ../user/forum_report_post.php:91 +msgid "Your report could not be recorded. Please wait a while and try again." +msgstr "" + +#: ../user/forum_report_post.php:92 +msgid "" +"If this is not a temporary error, please report it to the project developers." +msgstr "" + +#: ../user/forum_rss.php:41 +msgid "%1 RSS feed" +msgstr "" + +#: ../user/forum_rss.php:42 +msgid "This message board is available as an RSS feed." +msgstr "" + +#: ../user/forum_rss.php:43 +msgid "Options:" +msgstr "" + +#: ../user/forum_rss.php:47 +msgid "Include only posts by user ID %1 (default: all users)." +msgstr "" + +#: ../user/forum_rss.php:49 +msgid "Include only posts from the last %1 days (default: 30)." +msgstr "" + +#: ../user/forum_rss.php:51 +msgid "Truncate posts: %1 (Include only first 265 characters of each post)" +msgstr "" + +#: ../user/forum_rss.php:53 +msgid "Threads only: %1 (Include only the first post of every thread)" +msgstr "" + +#: ../user/forum_search.php:27 +msgid "Forum search" +msgstr "" + +#: ../user/forum_search.php:31 +msgid "Search query" +msgstr "" + +#: ../user/forum_search.php:32 +msgid "Search for keywords:" +msgstr "" + +#: ../user/forum_search.php:33 +msgid "Posts that contain all the specified words will be displayed" +msgstr "" + +#: ../user/forum_search.php:35 +msgid "For example: \"screensaver freeze\"" +msgstr "" + +#: ../user/forum_search.php:36 +msgid "Search for author ID:" +msgstr "" + +#: ../user/forum_search.php:37 +msgid "Only posts by this author will be displayed" +msgstr "" + +#: ../user/forum_search.php:39 +msgid "For example: \"43214\"" +msgstr "" + +#: ../user/forum_search.php:41 +msgid "Search options" +msgstr "" + +#: ../user/forum_search.php:42 +msgid "Search limits" +msgstr "" + +#: ../user/forum_search.php:43 +msgid "Search at most this many days back in time" +msgstr "" + +#: ../user/forum_search.php:50 ../user/forum_search.php:51 +msgid "%1 months" +msgstr "" + +#: ../user/forum_search.php:52 +msgid "1 year" +msgstr "" + +#: ../user/forum_search.php:73 +msgid "Only display posts from this forum" +msgstr "" + +#: ../user/forum_search.php:84 +msgid "Sort by" +msgstr "" + +#: ../user/forum_search.php:88 +msgid "Start the search" +msgstr "" + +#: ../user/forum_search_action.php:141 +msgid "Forum search results" +msgstr "" + +#: ../user/forum_search_action.php:174 +msgid "Thread titles matching your query:" +msgstr "" + +#: ../user/forum_search_action.php:194 +msgid "Messages matching your query:" +msgstr "" + +#: ../user/forum_search_action.php:217 +msgid "" +"Sorry, couldn't find anything matching your search query. You can try to " +"broaden your search by using less words (or less specific words)." +msgstr "" + +#: ../user/forum_search_action.php:219 +msgid "You can also %1try the same search on Google.%2" +msgstr "" + +#: ../user/forum_search_action.php:224 +msgid "Perform another search" +msgstr "" + +#: ../user/forum_subscribe.php:46 +msgid "Subscription successful" +msgstr "" + +#: ../user/forum_subscribe.php:49 +msgid "" +"You are now subscribed to %1. You will be notified whenever there is a new " +"post." +msgstr "" + +#: ../user/forum_subscribe.php:51 +msgid "Subscription failed" +msgstr "" + +#: ../user/forum_subscribe.php:52 +msgid "" +"We are currently unable to subscribe you to %1. Please try again later.." +msgstr "" + +#: ../user/forum_subscribe.php:61 +msgid "Unsubscription successful" +msgstr "" + +#: ../user/forum_subscribe.php:64 +msgid "" +"You are no longer subscribed to %1. You will no longer receive notifications " +"for this thread." +msgstr "" + +#: ../user/forum_subscribe.php:66 +msgid "Unsubscription failed" +msgstr "" + +#: ../user/forum_subscribe.php:67 +msgid "" +"We are currently unable to unsubscribe you from %1. Please try again later.." +msgstr "" + +#: ../user/forum_subscribe.php:74 +msgid "Unknown subscription action" +msgstr "" + +#: ../user/forum_thread.php:61 +msgid "This forum is not visible to you." +msgstr "" + +#: ../user/forum_thread.php:69 +msgid "This thread has been hidden by moderators." +msgstr "" + +#: ../user/forum_thread.php:128 +msgid "My question was answered" +msgstr "" + +#: ../user/forum_thread.php:129 +msgid "Click here if your question has been adequately answered" +msgstr "" + +#: ../user/forum_thread.php:137 +msgid "I've also got this question" +msgstr "" + +#: ../user/forum_thread.php:159 ../user/forum_thread.php:275 +msgid "Add a new message to this thread" +msgstr "" + +#: ../user/forum_thread.php:171 +msgid "Unsubscribe" +msgstr "" + +#: ../user/forum_thread.php:172 +msgid "You are subscribed to this thread. Click here to unsubscribe." +msgstr "" + +#: ../user/forum_thread.php:178 +msgid "Subscribe" +msgstr "" + +#: ../user/forum_thread.php:179 +msgid "Click to get email when there are new posts in this thread" +msgstr "" + +#: ../user/forum_thread.php:190 +msgid "Unhide this thread" +msgstr "" + +#: ../user/forum_thread.php:196 +msgid "Hide this thread" +msgstr "" + +#: ../user/forum_thread.php:202 +msgid "Make unsticky" +msgstr "" + +#: ../user/forum_thread.php:203 +msgid "Make this thread not sticky" +msgstr "" + +#: ../user/forum_thread.php:208 +msgid "Make sticky" +msgstr "" + +#: ../user/forum_thread.php:209 +msgid "Make this thread sticky" +msgstr "" + +#: ../user/forum_thread.php:215 +msgid "Unlock" +msgstr "" + +#: ../user/forum_thread.php:216 +msgid "Unlock this thread" +msgstr "" + +#: ../user/forum_thread.php:221 +msgid "Lock" +msgstr "" + +#: ../user/forum_thread.php:222 +msgid "Lock this thread" +msgstr "" + +#: ../user/forum_thread.php:229 +msgid "Move this thread to a different forum" +msgstr "" + +#: ../user/forum_thread.php:234 +msgid "Edit title" +msgstr "" + +#: ../user/forum_thread.php:235 +msgid "Edit thread title" +msgstr "" + +#: ../user/forum_thread.php:245 +msgid "Export as Notice" +msgstr "" + +#: ../user/forum_thread.php:251 +msgid "Don't export" +msgstr "" + +#: ../user/forum_thread.php:252 +msgid "Don't export this news item as a Notice" +msgstr "" + +#: ../user/forum_thread.php:260 ../user/forum_thread.php:262 +msgid "Sort" +msgstr "" + +#: ../user/forum_thread_status.php:49 +msgid "Thread status updated" +msgstr "" + +#: ../user/forum_thread_status.php:50 +msgid "The status has been updated." +msgstr "" + +#: ../user/forum_user_posts.php:73 +msgid "Posts by %1" +msgstr "" + +#: ../user/friend.php:33 +msgid "Already friends" +msgstr "" + +#: ../user/friend.php:39 +msgid "You requested friendship with %1 on %2." +msgstr "" + +#: ../user/friend.php:41 +msgid "This request is still pending confirmation." +msgstr "" + +#: ../user/friend.php:52 +msgid "%1 is not accepting friendship requests from you" +msgstr "" + +#: ../user/friend.php:61 +msgid "You can't be friends with yourself" +msgstr "" + +#: ../user/friend.php:69 +msgid "Add friend" +msgstr "" + +#: ../user/friend.php:74 +msgid "" +"You have asked to add %1 as a friend. We will notify %1 and will ask him/her " +"to confirm that you are friends." +msgstr "" + +#: ../user/friend.php:77 +msgid "Add an optional message here:" +msgstr "" + +#: ../user/friend.php:115 +msgid "Friend request sent" +msgstr "" + +#: ../user/friend.php:116 +msgid "We have notified %1 of your request." +msgstr "" + +#: ../user/friend.php:126 +msgid "Please log in as %1" +msgstr "" + +#: ../user/friend.php:127 +msgid "You must log in as %1 to view this friend request" +msgstr "" + +#: ../user/friend.php:138 +msgid "Friend request" +msgstr "" + +#: ../user/friend.php:141 +msgid "%1 has requested friendship with you." +msgstr "" + +#: ../user/friend.php:143 +msgid "%1 says: %2" +msgstr "" + +#: ../user/friend.php:146 +msgid "Accept friendship" +msgstr "" + +#: ../user/friend.php:146 +msgid "Click accept if %1 is in fact a friend" +msgstr "" + +#: ../user/friend.php:147 +msgid "Decline" +msgstr "" + +#: ../user/friend.php:147 +msgid "Click decline if %1 is not a friend" +msgstr "" + +#: ../user/friend.php:186 +msgid "Friendship confirmed" +msgstr "" + +#: ../user/friend.php:187 +msgid "Your friendship with %1 has been confirmed." +msgstr "" + +#: ../user/friend.php:205 +msgid "Friendship declined" +msgstr "" + +#: ../user/friend.php:206 +msgid "You have declined friendship with %1" +msgstr "" + +#: ../user/friend.php:221 +msgid "Notification not found" +msgstr "" + +#: ../user/friend.php:223 +msgid "Friend confirmed" +msgstr "" + +#: ../user/friend.php:224 +msgid "You are now friends with %1." +msgstr "" + +#: ../user/friend.php:232 +msgid "Cancel friendship?" +msgstr "" + +#: ../user/friend.php:234 +msgid "Are you sure you want to cancel your friendship with %1?" +msgstr "" + +#: ../user/friend.php:239 +msgid "Stay friends" +msgstr "" + +#: ../user/friend.php:249 +msgid "Friendship cancelled" +msgstr "" + +#: ../user/friend.php:250 +msgid "Your friendship with %1 has been cancelled." +msgstr "" + +#: ../user/get_passwd.php:25 +msgid "Forgot your account info?" +msgstr "" + +#: ../user/get_passwd.php:28 +msgid "" +"1) If you know your account's email address, and you can receive email there:" +msgstr "" + +#: ../user/get_passwd.php:29 +msgid "" +"Enter the email address below, and click OK. You will be sent email " +"instructions for resetting your password." +msgstr "" + +#: ../user/get_passwd.php:46 +msgid "" +"2) If you forgot your account's email address, or you can't receive email " +"there:" +msgstr "" + +#: ../user/get_passwd.php:47 +msgid "" +"If you have run BOINC under this account, you can still access it. Here's " +"how:" +msgstr "" + +#: ../user/get_passwd.php:50 +msgid "" +"Go to the BOINC data directory on your computer (its location is written to " +"the Event Log at startup)." +msgstr "" + +#: ../user/get_passwd.php:51 +msgid "Find your account file for this project; it will be named %1." +msgstr "" + +#: ../user/get_passwd.php:52 +msgid "Open the file in a text editor like Notepad. You'll see something like" +msgstr "" + +#: ../user/get_passwd.php:62 +msgid "Select and Copy the string between %1 and %2 (%3 in the above example)." +msgstr "" + +#: ../user/get_passwd.php:64 +msgid "Paste the string into the field below, and click OK." +msgstr "" + +#: ../user/get_passwd.php:65 +msgid "" +"You will now be logged in to your account; update the email and password of " +"your account." +msgstr "" + +#: ../user/get_passwd.php:71 +msgid "Log in with authenticator" +msgstr "" + +#: ../user/gpu_list.php:126 ../user/gpu_list.php:152 +msgid "No GPU tasks reported" +msgstr "" + +#: ../user/gpu_list.php:183 +msgid "" +"The following lists show the most productive GPU models on different " +"platforms. Relative speeds are shown in parentheses." +msgstr "" + +#: ../user/home.php:42 +msgid "Welcome to %1" +msgstr "" + +#: ../user/home.php:43 +msgid "View and edit your account preferences using the links below." +msgstr "" + +#: ../user/home.php:46 +msgid "If you have not already done so, %1download BOINC client software%2." +msgstr "" + +#: ../user/host_app_versions.php:37 +msgid "Anonymous platform, missing app" +msgstr "" + +#: ../user/host_app_versions.php:40 +msgid "anonymous platform" +msgstr "" + +#: ../user/host_app_versions.php:43 +msgid "Missing app version" +msgstr "" + +#: ../user/host_app_versions.php:45 +msgid "Missing app" +msgstr "" + +#: ../user/host_app_versions.php:47 +msgid "Missing platform" +msgstr "" + +#: ../user/host_app_versions.php:56 +msgid "Number of tasks completed" +msgstr "" + +#: ../user/host_app_versions.php:57 +msgid "Max tasks per day" +msgstr "" + +#: ../user/host_app_versions.php:58 +msgid "Number of tasks today" +msgstr "" + +#: ../user/host_app_versions.php:59 +msgid "Consecutive valid tasks" +msgstr "" + +#: ../user/host_app_versions.php:63 +msgid "Average processing rate" +msgstr "" + +#: ../user/host_app_versions.php:72 +msgid "Application details for host %1" +msgstr "" + +#: ../user/host_delete.php:31 +msgid "We have no record of that computer." +msgstr "" + +#: ../user/host_delete.php:38 +msgid "" +"You can not delete our record of this computer because our database still " +"contains work for it. You must wait a few days until the work for this " +"computer has been deleted from the project database." +msgstr "" + +#: ../user/host_delete.php:40 +msgid "Delete record of computer" +msgstr "" + +#: ../user/host_delete.php:41 +msgid "Record deleted." +msgstr "" + +#: ../user/host_delete.php:42 ../user/host_edit_action.php:65 +msgid "Return to list of your computers" +msgstr "" + +#: ../user/host_edit_action.php:39 +msgid "Merge computer records" +msgstr "" + +#: ../user/host_edit_form.php:35 +msgid "Merge computers" +msgstr "" + +#: ../user/host_edit_form.php:38 +msgid "" +"Sometimes BOINC assigns separate identities to the same computer by mistake. " +"You can correct this by merging old identities with the newest one." +msgstr "" + +#: ../user/host_edit_form.php:56 +msgid "No hosts are eligible for merging with this one." +msgstr "" + +#: ../user/host_edit_form.php:58 ../user/host_edit_form.php:114 +msgid "Show details" +msgstr "" + +#: ../user/host_edit_form.php:66 +msgid "" +"Check the computers that are the same as %1 (created %2, computer ID %3):" +msgstr "" + +#: ../user/host_edit_form.php:70 ../user/workunit.php:39 +msgid "name" +msgstr "" + +#: ../user/host_edit_form.php:70 ../user/workunit.php:41 +msgid "created" +msgstr "" + +#: ../user/host_edit_form.php:70 +msgid "computer ID" +msgstr "" + +#: ../user/host_edit_form.php:77 +msgid "no hostname" +msgstr "" + +#: ../user/host_edit_form.php:109 +msgid "Merge hosts" +msgstr "" + +#: ../user/host_update_credit.php:28 +msgid "Updating computer credit" +msgstr "" + +#: ../user/host_venue_action.php:41 +msgid "Host venue updated" +msgstr "" + +#: ../user/host_venue_action.php:43 +msgid "none" +msgstr "" + +#: ../user/host_venue_action.php:46 +msgid "The venue of this host has been set to %1." +msgstr "" + +#: ../user/host_venue_action.php:48 +msgid "" +"This change will take effect the next time the host communicates with this " +"project." +msgstr "" + +#: ../user/host_venue_action.php:50 +msgid "Return to host page" +msgstr "" + +#: ../user/hosts_user.php:53 +msgid "Computers belonging to %1" +msgstr "" + +#: ../user/hosts_user.php:55 +msgid "Computers hidden" +msgstr "" + +#: ../user/hosts_user.php:56 +msgid "" +"This user has chosen not to show information about his or her computers." +msgstr "" + +#: ../user/hosts_user.php:64 +msgid "Your computers" +msgstr "" + +#: ../user/html.php:23 +msgid "Allowed HTML tags" +msgstr "" + +#: ../user/html.php:25 +msgid "The following HTML tags are allowed in team descriptions:" +msgstr "" + +#: ../user/html.php:27 +msgid "bold" +msgstr "" + +#: ../user/html.php:28 +msgid "italics" +msgstr "" + +#: ../user/html.php:29 +msgid "hyperlink" +msgstr "" + +#: ../user/html.php:30 +msgid "paragraph" +msgstr "" + +#: ../user/html.php:31 +msgid "break" +msgstr "" + +#: ../user/html.php:32 +msgid "preformatted" +msgstr "" + +#: ../user/html.php:33 +msgid "" +"image; height cannot exceed 450 pixels. Please do not link to images without " +"permission of the web site where the image is hosted." +msgstr "" + +#: ../user/html.php:35 +msgid "You can also use ampersand notation for special characters." +msgstr "" + +#: ../user/info.php:35 +msgid "Run %1 only on authorized computers" +msgstr "" + +#: ../user/info.php:36 +msgid "" +"Run %1 only on computers that you own, or for which you have obtained the " +"owner's permission. Some companies and schools have policies that prohibit " +"using their computers for projects such as %1." +msgstr "" + +#: ../user/info.php:38 +msgid "How %1 will use your computer" +msgstr "" + +#: ../user/info.php:39 +msgid "" +"When you run %1 on your computer, it will use part of the computer's CPU " +"power, disk space, and network bandwidth. You can control how much of your " +"resources are used by %1, and when it uses them." +msgstr "" + +#: ../user/info.php:40 +msgid "" +"The work done by your computer contributes to the goals of %1, as described " +"on its web site. The application programs may change from time to time." +msgstr "" + +#: ../user/info.php:42 +msgid "Privacy policy" +msgstr "" + +#: ../user/info.php:43 +msgid "" +"Your account on %1 is identified by a name that you choose. This name may be " +"shown on the %1 web site, along with a summary of the work your computer has " +"done for %1. If you want to be anonymous, choose a name that doesn't reveal " +"your identity." +msgstr "" + +#: ../user/info.php:44 +msgid "" +"If you participate in %1, information about your computer (such as its " +"processor type, amount of memory, etc.) will be recorded by %1 and used to " +"decide what type of work to assign to your computer. This information will " +"also be shown on %1's web site. Nothing that reveals your computer's " +"location (e.g. its domain name or network address) will be shown." +msgstr "" + +#: ../user/info.php:45 +msgid "" +"To participate in %1, you must give an address where you receive email. This " +"address will not be shown on the %1 web site or shared with organizations. %" +"1 may send you periodic newsletters; however, you can opt out at any time." +msgstr "" + +#: ../user/info.php:46 +msgid "" +"Private messages sent on the %1 web site are visible only to the sender and " +"recipient. %1 does not examine or police the content of private messages. " +"If you receive unwanted private messages from another %1 user, you may add " +"them to your %2message filter%3. This will prevent you from seeing any " +"public or private messages from that user." +msgstr "" + +#: ../user/info.php:47 +msgid "" +"If you use our web site forums you must follow the %2posting guidelines%3. " +"Messages posted to the %1 forums are visible to everyone, including non-" +"members. By posting to the forums, you are granting irrevocable license for " +"anyone to view and copy your posts." +msgstr "" + +#: ../user/info.php:48 +msgid "Is it safe to run %1?" +msgstr "" + +#: ../user/info.php:49 +msgid "" +"Any time you download a program through the Internet you are taking a " +"chance: the program might have dangerous errors, or the download server " +"might have been hacked. %1 has made efforts to minimize these risks. We have " +"tested our applications carefully. Our servers are behind a firewall and are " +"configured for high security. To ensure the integrity of program downloads, " +"all executable files are digitally signed on a secure computer not connected " +"to the Internet." +msgstr "" + +#: ../user/info.php:50 +msgid "" +"The applications run by %1 may cause some computers to overheat. If this " +"happens, stop running %1 or use a %2utility program%3 that limits CPU usage." +msgstr "" + +#: ../user/info.php:51 +msgid "" +"%1 was developed by %2. BOINC was developed at the University of California." +msgstr "" + +#: ../user/info.php:53 +msgid "Liability" +msgstr "" + +#: ../user/info.php:54 +msgid "" +"%1 and %2 assume no liability for damage to your computer, loss of data, or " +"any other event or condition that may occur as a result of participating in %" +"1." +msgstr "" + +#: ../user/info.php:56 +msgid "Other BOINC projects" +msgstr "" + +#: ../user/info.php:57 +msgid "" +"Other projects use the same platform, BOINC, as %1. You may want to consider " +"participating in one or more of these projects. By doing so, your computer " +"will do useful work even when %1 has no work available for it." +msgstr "" + +#: ../user/info.php:58 +msgid "" +"These other projects are not associated with %1, and we cannot vouch for " +"their security practices or the nature of their research. Join them at your " +"own risk." +msgstr "" + +#: ../user/language_select.php:47 +msgid "Language selection" +msgstr "" + +#: ../user/language_select.php:73 +msgid "" +"This web site is available in several languages. The currently selected " +"language is %1." +msgstr "" + +#: ../user/language_select.php:78 +msgid "" +"Normally the choice of language is determined by your browser's language " +"setting, which is: %1. You can change this setting using:" +msgstr "" + +#: ../user/language_select.php:83 +msgid "Firefox: Tools/Options/General" +msgstr "" + +#: ../user/language_select.php:85 +msgid "Microsoft IE: Tools/Internet Options/Languages" +msgstr "" + +#: ../user/language_select.php:89 +msgid "" +"Or you can select a language by clicking on one of the links. This will " +"send your browser a cookie; make sure your browser accepts cookies from our " +"domain." +msgstr "" + +#: ../user/language_select.php:95 +msgid "Language name (click to select)" +msgstr "" + +#: ../user/language_select.php:97 +msgid "Use browser language setting" +msgstr "" + +#: ../user/language_select.php:113 +msgid "" +"Translations are done by volunteers. If your native language is not here, %" +"1you can provide a translation%2." +msgstr "" + +#: ../user/login_form.php:45 +msgid "Email address:" +msgstr "" + +#: ../user/login_form.php:45 +msgid "forgot email address?" +msgstr "" + +#: ../user/login_form.php:48 +msgid "Password:" +msgstr "" + +#: ../user/login_form.php:48 +msgid "forgot password?" +msgstr "" + +#: ../user/login_form.php:51 +msgid "Stay logged in" +msgstr "" + +#: ../user/login_form.php:62 +msgid "or %1create an account%2." +msgstr "" + +#: ../user/merge_by_name.php:31 +msgid "Processing %1" +msgstr "" + +#: ../user/merge_by_name.php:43 +msgid "Merged %1 into %2" +msgstr "" + +#: ../user/merge_by_name.php:72 +msgid "Return to the list of your computers" +msgstr "" + +#: ../user/merge_by_name.php:76 +msgid "" +"This operation merges computers based on their domain name.\n" +"

    \n" +" For each domain name, it will merge all older computers\n" +" having that name with the newest computer having that name.\n" +" Incompatible computers will not be merged.\n" +"

    " +msgstr "" + +#: ../user/merge_by_name.php:82 +msgid "Go ahead and do this" +msgstr "" + +#: ../user/merge_by_name.php:83 +msgid "Return to the list of computers" +msgstr "" + +#: ../user/moderation.php:26 +msgid "" +"\n" +"To maximize discussion and flow of information,\n" +"our message boards are moderated.\n" +"Message board postings are subject to the following posting rules:\n" +msgstr "" + +#: ../user/moderation.php:30 +msgid "" +"\n" +"

    \n" +"Moderators may delete posts that violate any of these rules.\n" +"The authors of deleted posts will be notified via email.\n" +"Gross offenders may have their ability to post messages temporarily revoked\n" +"(though to prevent abuse only project administrators have the ability to do " +"so).\n" +"Additional kinds of bad behavior (\"bugging\" posts to trap the\n" +"IP addresses of other participants, excessive thread creation to spam\n" +"the forums, etc.), while not listed in the formal rules, may still\n" +"lead to similar penalties.\n" +"

    \n" +"If you think a post violates any of the posting rules,\n" +"click the red X on the post and fill out the form;\n" +"moderators will be notified of your complaint.\n" +"Please use this button only for clear violations - not\n" +"personal disputes.\n" +"

    \n" +"We try to be as fair as we can when moderating,\n" +"but in a large community of users, with many different viewpoints,\n" +"there will always be some people that will not be happy\n" +"with our moderation decisions.\n" +"While we regret that this happens,\n" +"please realize that we cannot suit all of the people all of the time\n" +"and have to make decisions based on our resources and\n" +"what is best for the forum overall.\n" +"Please don't discuss our moderation policy on the forums. We aren't\n" +"a social engineering project nor are we in the business of creating\n" +"a perfectly fair system. So such discussions tend to be counterproductive\n" +"and potentially incendiary. If you have a legitimate claim,\n" +"send email to the address below.\n" +"

    \n" +"This moderation policy is set by the %1 project.\n" +"If you have comments about the policy, email %2.\n" +"\n" +msgstr "" + +#: ../user/pending.php:66 +msgid "Pending credit" +msgstr "" + +#: ../user/pending.php:68 +msgid "Result ID" +msgstr "" + +#: ../user/pending.php:68 +msgid "Workunit ID" +msgstr "" + +#: ../user/pending.php:68 +msgid "Host ID" +msgstr "" + +#: ../user/pending.php:68 +msgid "Claimed credit" +msgstr "" + +#: ../user/pending.php:81 +msgid "Pending credit: %1" +msgstr "" + +#: ../user/pm.php:32 +msgid "Block messages from this user" +msgstr "" + +#: ../user/pm.php:32 +msgid "Block user" +msgstr "" + +#: ../user/pm.php:73 +msgid "Your message has been sent." +msgstr "" + +#: ../user/pm.php:83 +msgid "You have no private messages." +msgstr "" + +#: ../user/pm.php:90 +msgid "Sender and date" +msgstr "" + +#: ../user/pm.php:106 +msgid "Reply to this message" +msgstr "" + +#: ../user/pm.php:107 +msgid "Delete this message" +msgstr "" + +#: ../user/pm.php:112 +msgid "Select all" +msgstr "" + +#: ../user/pm.php:114 +msgid "Unselect all" +msgstr "" + +#: ../user/pm.php:117 +msgid "Delete selected messages" +msgstr "" + +#: ../user/pm.php:140 +msgid "Sender" +msgstr "" + +#: ../user/pm.php:143 +msgid "Date" +msgstr "" + +#: ../user/pm.php:185 +msgid "You need to fill all fields to send a private message" +msgstr "" + +#: ../user/pm.php:188 +msgid "" +"Your message was flagged as spam\n" +" by the Akismet anti-spam system.\n" +" Please modify your text and try again." +msgstr "" + +#: ../user/pm.php:205 +msgid "Could not find user with id %1" +msgstr "" + +#: ../user/pm.php:210 +msgid "Could not find user with username %1" +msgstr "" + +#: ../user/pm.php:212 +msgid "%1 is not a unique username; you will have to use user ID" +msgstr "" + +#: ../user/pm.php:217 +msgid "User %1 (ID: %2) is not accepting private messages from you." +msgstr "" + +#: ../user/pm.php:240 ../user/view_profile.php:26 +msgid "No such user" +msgstr "" + +#: ../user/pm.php:242 +msgid "Really block %1?" +msgstr "" + +#: ../user/pm.php:243 +msgid "" +"Are you really sure you want to block user %1 from sending you private " +"messages?" +msgstr "" + +#: ../user/pm.php:244 +msgid "Please note that you can only block a limited amount of users." +msgstr "" + +#: ../user/pm.php:245 +msgid "" +"Once the user has been blocked you can unblock it using forum preferences " +"page." +msgstr "" + +#: ../user/pm.php:252 +msgid "No, cancel" +msgstr "" + +#: ../user/pm.php:260 ../user/team_admins.php:98 +msgid "no such user" +msgstr "" + +#: ../user/pm.php:263 +msgid "User %1 blocked" +msgstr "" + +#: ../user/pm.php:265 +msgid "User %1 has been blocked from sending you private messages." +msgstr "" + +#: ../user/pm.php:266 +msgid "To unblock, visit %1message board preferences%2" +msgstr "" + +#: ../user/pm.php:302 +msgid "Unknown action" +msgstr "" + +#: ../user/prefs.php:32 +msgid "" +"Your preferences have been updated, and\n" +" will take effect when your computer communicates with %1\n" +" or you issue the %2Update%3 command from the BOINC Manager." +msgstr "" + +#: ../user/prefs.php:41 +msgid "" +"Your preferences have been reset to the defaults, and\n" +" will take effect when your computer communicates with %1\n" +" or you issue the %2Update%3 command from the BOINC Manager." +msgstr "" + +#: ../user/prefs_edit.php:65 ../user/prefs_edit.php:93 +msgid "%1 for %2" +msgstr "" + +#: ../user/prefs_edit.php:110 +msgid "Back to preferences" +msgstr "" + +#: ../user/prefs_remove.php:45 +msgid "Confirm delete preferences" +msgstr "" + +#: ../user/prefs_remove.php:48 +msgid "Are you sure you want to delete your separate %1 preferences for %2?" +msgstr "" + +#: ../user/prefs_remove.php:52 +msgid "Remove preferences" +msgstr "" + +#: ../user/prefs_remove.php:54 +msgid "Cancel" +msgstr "" + +#: ../user/profile_menu.php:35 +msgid "" +"%1Profiles%2 let individuals share backgrounds and opinions with the %3 " +"community." +msgstr "" + +#: ../user/profile_menu.php:36 +msgid "" +"Explore the diversity of your fellow volunteers, and contribute your own " +"views for others to enjoy." +msgstr "" + +#: ../user/profile_menu.php:37 +msgid "" +"If you haven't already, you can %1create your own user profile%2 for others " +"to see!" +msgstr "" + +#: ../user/profile_menu.php:42 +msgid "User of the Day" +msgstr "" + +#: ../user/profile_menu.php:57 +msgid "User Profile Explorer" +msgstr "" + +#: ../user/profile_menu.php:60 +msgid "View the %1User Picture Gallery%2." +msgstr "" + +#: ../user/profile_menu.php:61 +msgid "Browse profiles %1by country%2." +msgstr "" + +#: ../user/profile_menu.php:62 +msgid "" +"Browse profiles %1at random%2, %3at random with pictures%2, or %4at random " +"without pictures%2." +msgstr "" + +#: ../user/profile_menu.php:66 +msgid "Alphabetical profile listings:" +msgstr "" + +#: ../user/profile_menu.php:72 +msgid "Search profile text" +msgstr "" + +#: ../user/profile_menu.php:98 +msgid "No profiles" +msgstr "" + +#: ../user/profile_menu.php:99 +msgid "No profiles matched your query." +msgstr "" + +#: ../user/profile_rate.php:29 +msgid "Invalid vote type:" +msgstr "" + +#: ../user/profile_rate.php:34 +msgid "Vote Recorded" +msgstr "" + +#: ../user/profile_rate.php:38 +msgid "Thank you" +msgstr "" + +#: ../user/profile_rate.php:41 +msgid "Your recommendation has been recorded." +msgstr "" + +#: ../user/profile_rate.php:43 +msgid "Your vote to reject this profile has been recorded." +msgstr "" + +#: ../user/profile_rate.php:46 +msgid "Return to profile." +msgstr "" + +#: ../user/profile_search_action.php:36 +msgid "Profiles containing '%1'" +msgstr "" + +#: ../user/profile_search_action.php:40 +msgid "User name" +msgstr "" + +#: ../user/profile_search_action.php:41 +msgid "Joined project" +msgstr "" + +#: ../user/profile_search_action.php:44 +msgid "Recent credit" +msgstr "" + +#: ../user/profile_search_action.php:54 +msgid "No profiles found containing '%1'" +msgstr "" + +#: ../user/result.php:35 +msgid "Task %1" +msgstr "" + +#: ../user/results.php:29 +msgid "This feature is turned off temporarily" +msgstr "" + +#: ../user/results.php:56 +msgid "No computer with ID %1 found" +msgstr "" + +#: ../user/results.php:63 +msgid "No access" +msgstr "" + +#: ../user/results.php:69 +msgid "Missing user ID or host ID" +msgstr "" + +#: ../user/results.php:107 +msgid "No tasks to display" +msgstr "" + +#: ../user/server_status.php:97 +msgid "Running" +msgstr "" + +#: ../user/server_status.php:100 +msgid "Not Running" +msgstr "" + +#: ../user/server_status.php:103 +msgid "Disabled" +msgstr "" + +#: ../user/server_status.php:231 +msgid "Project status" +msgstr "" + +#: ../user/server_status.php:233 +msgid "Server software version: %1" +msgstr "" + +#: ../user/server_status.php:241 +msgid "Program" +msgstr "" + +#: ../user/server_status.php:241 +msgid "Host" +msgstr "" + +#: ../user/server_status.php:252 +msgid "data-driven web pages" +msgstr "" + +#: ../user/server_status.php:258 +msgid "upload/download server" +msgstr "" + +#: ../user/server_status.php:261 +msgid "scheduler" +msgstr "" + +#: ../user/server_status.php:294 +msgid "Running:" +msgstr "" + +#: ../user/server_status.php:295 +msgid "Program is operating normally" +msgstr "" + +#: ../user/server_status.php:296 +msgid "Not Running:" +msgstr "" + +#: ../user/server_status.php:297 +msgid "Program failed or the project is down" +msgstr "" + +#: ../user/server_status.php:298 +msgid "Disabled:" +msgstr "" + +#: ../user/server_status.php:299 +msgid "Program is disabled" +msgstr "" + +#: ../user/server_status.php:303 +msgid "Computing status" +msgstr "" + +#: ../user/server_status.php:309 +msgid "The database server is not accessible" +msgstr "" + +#: ../user/server_status.php:326 +msgid "Tasks ready to send" +msgstr "" + +#: ../user/server_status.php:331 ../user/workunit.php:55 +msgid "Tasks in progress" +msgstr "" + +#: ../user/server_status.php:336 +msgid "Workunits waiting for validation" +msgstr "" + +#: ../user/server_status.php:341 +msgid "Workunits waiting for assimilation" +msgstr "" + +#: ../user/server_status.php:346 +msgid "Workunits waiting for file deletion" +msgstr "" + +#: ../user/server_status.php:351 +msgid "Tasks waiting for file deletion" +msgstr "" + +#: ../user/server_status.php:367 +msgid "Transitioner backlog (hours)" +msgstr "" + +#: ../user/server_status.php:374 +msgid "Users" +msgstr "" + +#: ../user/server_status.php:377 ../user/server_status.php:395 +msgid "with recent credit" +msgstr "" + +#: ../user/server_status.php:382 ../user/server_status.php:400 +msgid "with credit" +msgstr "" + +#: ../user/server_status.php:387 ../user/server_status.php:405 +msgid "registered in past 24 hours" +msgstr "" + +#: ../user/server_status.php:411 +msgid "current GigaFLOPs" +msgstr "" + +#: ../user/server_status.php:420 +msgid "Tasks by application" +msgstr "" + +#: ../user/server_status.php:423 ../user/workunit.php:40 +msgid "application" +msgstr "" + +#: ../user/server_status.php:424 +msgid "unsent" +msgstr "" + +#: ../user/server_status.php:425 +msgid "in progress" +msgstr "" + +#: ../user/server_status.php:426 +msgid "avg runtime of last 100 results in h (min-max)" +msgstr "" + +#: ../user/server_status.php:427 +msgid "users in last 24h" +msgstr "" + +#: ../user/show_host_detail.php:40 +msgid "Computer %1" +msgstr "" + +#: ../user/stats.php:21 +msgid "Statistics and leaderboards" +msgstr "" + +#: ../user/stats.php:28 +msgid "Statistics for %1" +msgstr "" + +#: ../user/stats.php:37 +msgid "" +"More detailed statistics for %1 and other BOINC-based projects are available " +"at several web sites:" +msgstr "" + +#: ../user/stats.php:40 +msgid "" +"You can also get your current statistics in the form of a \"signature image" +"\":" +msgstr "" + +#: ../user/stats.php:43 +msgid "" +"Additionally you can get your individual statistics summed across all BOINC " +"projects from several sites; see your %1home page%2." +msgstr "" + +#: ../user/team.php:27 +msgid "%1 participants may form %2teams%3." +msgstr "" + +#: ../user/team.php:29 +msgid "" +"You may belong to only one team. You can join or quit a team at any time." +msgstr "" + +#: ../user/team.php:31 +msgid "Each team has a %1founder%2 who may:" +msgstr "" + +#: ../user/team.php:33 +msgid "access team members' email addresses" +msgstr "" + +#: ../user/team.php:34 +msgid "edit the team's name and description" +msgstr "" + +#: ../user/team.php:35 +msgid "add or remove team admins" +msgstr "" + +#: ../user/team.php:36 +msgid "remove members from the team" +msgstr "" + +#: ../user/team.php:37 +msgid "disband a team if it has no members" +msgstr "" + +#: ../user/team.php:40 +msgid "To join a team, visit its team page and click %1Join this team%2." +msgstr "" + +#: ../user/team.php:41 ../user/team_search.php:180 +msgid "Find a team" +msgstr "" + +#: ../user/team.php:48 +msgid "All teams" +msgstr "" + +#: ../user/team.php:52 +msgid "%1 teams" +msgstr "" + +#: ../user/team.php:58 +msgid "Create a new team" +msgstr "" + +#: ../user/team.php:59 +msgid "" +"If you cannot find a team that is right for you, you can %1create a team%2." +msgstr "" + +#: ../user/team_admins.php:34 +msgid "Remove Team Admin status from this member" +msgstr "" + +#: ../user/team_admins.php:40 ../user/team_admins.php:51 +msgid "Add or remove Team Admins" +msgstr "" + +#: ../user/team_admins.php:41 +msgid "You can select team members as 'Team Admins'. Team Admins can:" +msgstr "" + +#: ../user/team_admins.php:43 +msgid "Edit team information (name, URL, description, country)" +msgstr "" + +#: ../user/team_admins.php:44 +msgid "View the team's join/quit history" +msgstr "" + +#: ../user/team_admins.php:45 +msgid "" +"Moderate the team forum, if any (admins get email notification of moderation " +"events and red X reports)" +msgstr "" + +#: ../user/team_admins.php:47 +msgid "Team Admins cannot:" +msgstr "" + +#: ../user/team_admins.php:49 +msgid "Change the team founder" +msgstr "" + +#: ../user/team_admins.php:50 ../user/team_manage.php:54 +msgid "Remove members" +msgstr "" + +#: ../user/team_admins.php:53 +msgid "If a Team Admin quits the team, they cease to be a Team Admin." +msgstr "" + +#: ../user/team_admins.php:54 +msgid "" +"We recommend that you select only people you know and trust very well as " +"Team Admins." +msgstr "" + +#: ../user/team_admins.php:59 +msgid "There are currently no Team Admins" +msgstr "" + +#: ../user/team_admins.php:61 +msgid "Current Team Admins" +msgstr "" + +#: ../user/team_admins.php:62 +msgid "Became Team Admin on" +msgstr "" + +#: ../user/team_admins.php:77 +msgid "Add Team Admin" +msgstr "" + +#: ../user/team_admins.php:78 +msgid "Email address of team member:" +msgstr "" + +#: ../user/team_admins.php:90 +msgid "failed to remove admin" +msgstr "" + +#: ../user/team_admins.php:99 +msgid "User is not member of team" +msgstr "" + +#: ../user/team_admins.php:101 +msgid "%1 is already an admin of %2" +msgstr "" + +#: ../user/team_admins.php:105 +msgid "Couldn't add admin" +msgstr "" + +#: ../user/team_admins.php:111 ../user/team_manage.php:85 +#: ../user/team_quit_form.php:28 ../user/team_remove_inactive_action.php:28 +msgid "No such team" +msgstr "" + +#: ../user/team_change_founder_action.php:30 +#: ../user/team_change_founder_form.php:33 ../user/team_display.php:67 +#: ../user/team_edit_action.php:30 ../user/team_edit_form.php:29 +#: ../user/team_email_list.php:55 +msgid "no such team" +msgstr "" + +#: ../user/team_change_founder_action.php:38 +msgid "User is not a member of %1" +msgstr "" + +#: ../user/team_change_founder_action.php:41 +msgid "Changing founder of %1" +msgstr "" + +#: ../user/team_change_founder_action.php:43 +msgid "%1 is now founder of %2" +msgstr "" + +#: ../user/team_change_founder_form.php:37 +msgid "Change founder of %1" +msgstr "" + +#: ../user/team_change_founder_form.php:43 +msgid "" +"Team member %1 requested this team's foundership on %2, but left the team, " +"thus canceling the request." +msgstr "" + +#: ../user/team_change_founder_form.php:49 +msgid "" +"Team member %1 has requested this team's foundership. This may be because " +"you left the team or haven't had contact with the team for a long time." +msgstr "" + +#: ../user/team_change_founder_form.php:55 +msgid "decline request" +msgstr "" + +#: ../user/team_change_founder_form.php:58 +msgid "" +"If you don't decline the request by %1, %2 will have the option of assuming " +"team foundership.

    \n" +" To accept the request, assign foundership to %3 using the " +"form below." +msgstr "" + +#: ../user/team_change_founder_form.php:66 +msgid "No transfer request is pending." +msgstr "" + +#: ../user/team_change_founder_form.php:69 +msgid "" +"To assign foundership of this team to another member, check the box next to " +"member name and click Change founder below." +msgstr "" + +#: ../user/team_change_founder_form.php:76 +msgid "New founder?" +msgstr "" + +#: ../user/team_change_founder_form.php:105 ../user/team_manage.php:56 +msgid "Change founder" +msgstr "" + +#: ../user/team_change_founder_form.php:108 +msgid "There are no users to transfer team to." +msgstr "" + +#: ../user/team_create_action.php:29 +msgid "You must choose a non-blank team name" +msgstr "" + +#: ../user/team_create_action.php:34 +msgid "A team named %1 already exists - try another name" +msgstr "" + +#: ../user/team_create_action.php:54 +msgid "Could not create team - please try later." +msgstr "" + +#: ../user/team_create_form.php:27 ../user/team_create_form.php:32 +msgid "Create a team" +msgstr "" + +#: ../user/team_create_form.php:30 +msgid "" +"You belong to %1. You must %2quit this team%3 before creating a new one." +msgstr "" + +#: ../user/team_delta.php:65 +msgid "Not founder or admin" +msgstr "" + +#: ../user/team_delta.php:72 +msgid "Team history for %1" +msgstr "" + +#: ../user/team_delta.php:75 +msgid "When" +msgstr "" + +#: ../user/team_delta.php:76 +msgid "User" +msgstr "" + +#: ../user/team_delta.php:77 +msgid "Action" +msgstr "" + +#: ../user/team_delta.php:78 +msgid "Total credit at time of action" +msgstr "" + +#: ../user/team_edit_action.php:53 +msgid "bad country" +msgstr "" + +#: ../user/team_edit_action.php:59 +msgid "The name '%1' is being used by another team." +msgstr "" + +#: ../user/team_edit_action.php:62 +msgid "Must specify team name" +msgstr "" + +#: ../user/team_edit_action.php:90 +msgid "Could not update team - please try again later." +msgstr "" + +#: ../user/team_edit_form.php:33 +msgid "Edit %1" +msgstr "" + +#: ../user/team_edit_form.php:34 +msgid "Update team info" +msgstr "" + +#: ../user/team_email_list.php:61 +msgid "%1 Email List" +msgstr "" + +#: ../user/team_email_list.php:63 +msgid "Member list of %1" +msgstr "" + +#: ../user/team_email_list.php:78 +msgid "Show as plain text" +msgstr "" + +#: ../user/team_forum.php:28 ../user/team_forum.php:39 +msgid "Create Message Board" +msgstr "" + +#: ../user/team_forum.php:29 +msgid "You may create a message board for use by %1." +msgstr "" + +#: ../user/team_forum.php:31 +msgid "Only team members will be able to post." +msgstr "" + +#: ../user/team_forum.php:32 +msgid "At your option, only members will be able to read." +msgstr "" + +#: ../user/team_forum.php:33 +msgid "You and your Team Admins will have moderator privileges." +msgstr "" + +#: ../user/team_forum.php:40 +msgid "Create a message board for %1" +msgstr "" + +#: ../user/team_forum.php:48 +msgid "Team already has a message board" +msgstr "" + +#: ../user/team_forum.php:59 +msgid "Team Message Board" +msgstr "" + +#: ../user/team_forum.php:71 +msgid "Minimum time between posts (seconds)" +msgstr "" + +#: ../user/team_forum.php:74 +msgid "Minimum total credit to post" +msgstr "" + +#: ../user/team_forum.php:77 +msgid "Minimum average credit to post" +msgstr "" + +#: ../user/team_forum.php:80 +msgid "Submit" +msgstr "" + +#: ../user/team_forum.php:89 +msgid "Remove your team's message board." +msgstr "" + +#: ../user/team_forum.php:97 +msgid "Really remove message board?" +msgstr "" + +#: ../user/team_forum.php:98 +msgid "" +"Are you sure you want to remove your team's message board? All threads and " +"posts will be permanently removed. (You may, however, create a new message " +"board later)." +msgstr "" + +#: ../user/team_forum.php:100 +msgid "Yes - remove message board" +msgstr "" + +#: ../user/team_forum.php:121 +msgid "Message board removed" +msgstr "" + +#: ../user/team_forum.php:124 +msgid "" +"Your team's message board has been removed. You may now %1create a new one%2." +msgstr "" + +#: ../user/team_forum.php:143 +msgid "Team Message Board Updated" +msgstr "" + +#: ../user/team_forum.php:144 +msgid "Update successful" +msgstr "" + +#: ../user/team_forum.php:147 +msgid "Update failed" +msgstr "" + +#: ../user/team_forum.php:154 +msgid "Team has no forum" +msgstr "" + +#: ../user/team_founder_transfer_action.php:36 +msgid "You must be a member of a team to access this page." +msgstr "" + +#: ../user/team_founder_transfer_action.php:90 +msgid "Requesting foundership of %1" +msgstr "" + +#: ../user/team_founder_transfer_action.php:98 +msgid "" +"The current founder has been notified of your request by email and private " +"message.

    \n" +" If the founder does not respond within 60 days you " +"will be allowed to become the founder." +msgstr "" + +#: ../user/team_founder_transfer_action.php:102 +#: ../user/team_founder_transfer_action.php:113 +msgid "Foundership request not allowed now" +msgstr "" + +#: ../user/team_founder_transfer_action.php:109 +msgid "Assumed foundership of %1" +msgstr "" + +#: ../user/team_founder_transfer_action.php:111 +msgid "" +"Congratulations, you are now the founder of team %1. Go to %2Your Account " +"page%3 to find the Team Admin options." +msgstr "" + +#: ../user/team_founder_transfer_action.php:120 +msgid "Decline founder change request" +msgstr "" + +#: ../user/team_founder_transfer_action.php:127 +msgid "The foundership request from %1 has been declined." +msgstr "" + +#: ../user/team_founder_transfer_action.php:130 +msgid "There were no foundership requests." +msgstr "" + +#: ../user/team_founder_transfer_action.php:134 +msgid "undefined action %1" +msgstr "" + +#: ../user/team_founder_transfer_action.php:137 +#: ../user/team_founder_transfer_form.php:83 +msgid "Return to team page" +msgstr "" + +#: ../user/team_founder_transfer_form.php:28 +msgid "You need to be a member of a team to access this page." +msgstr "" + +#: ../user/team_founder_transfer_form.php:31 +msgid "Request foundership of %1" +msgstr "" + +#: ../user/team_founder_transfer_form.php:38 +msgid "You are now founder of team %1." +msgstr "" + +#: ../user/team_founder_transfer_form.php:44 +msgid "You requested the foundership of %1 on %2." +msgstr "" + +#: ../user/team_founder_transfer_form.php:47 +msgid "" +"60 days have elapsed since your request, and the founder has not responded. " +"You may now assume foundership by clicking here:" +msgstr "" + +#: ../user/team_founder_transfer_form.php:50 +msgid "Assume foundership" +msgstr "" + +#: ../user/team_founder_transfer_form.php:54 +msgid "" +"The founder was notified of your request. If he/she does not respond by %1 " +"you will be given an option to become founder." +msgstr "" + +#: ../user/team_founder_transfer_form.php:60 +msgid "" +"If the team founder is not active and you want to assume the role of " +"founder, click the button below. The current founder will be sent an email " +"detailing your request, and will be able to transfer foundership to you or " +"to decline your request. If the founder does not respond in 60 days, you " +"will be allowed to become the founder.

    \n" +" Are you sure you want to request foundership?" +msgstr "" + +#: ../user/team_founder_transfer_form.php:65 +msgid "Request foundership" +msgstr "" + +#: ../user/team_founder_transfer_form.php:74 +msgid "Founder change has already been requested by %1 on %2." +msgstr "" + +#: ../user/team_founder_transfer_form.php:77 +msgid "" +"A foundership change was requested during the last 90 days, so new requests " +"are not allowed. Please try again later." +msgstr "" + +#: ../user/team_join.php:32 ../user/team_join_action.php:32 +#: ../user/team_join_form.php:29 +msgid "The team %1 is not joinable." +msgstr "" + +#: ../user/team_join.php:35 ../user/team_join_action.php:35 +msgid "Already a member" +msgstr "" + +#: ../user/team_join.php:36 ../user/team_join_action.php:36 +msgid "You are already a member of %1." +msgstr "" + +#: ../user/team_join.php:42 ../user/team_join_action.php:43 +msgid "Couldn't join team - please try again later." +msgstr "" + +#: ../user/team_join_action.php:40 +msgid "Joined %1" +msgstr "" + +#: ../user/team_join_action.php:41 +msgid "You have joined %1." +msgstr "" + +#: ../user/team_join_form.php:32 +msgid "Join %1" +msgstr "" + +#: ../user/team_join_form.php:33 +msgid "Please note:" +msgstr "" + +#: ../user/team_join_form.php:35 +msgid "Joining a team gives its founder access to your email address." +msgstr "" + +#: ../user/team_join_form.php:36 +msgid "Joining a team does not affect your account's credit." +msgstr "" + +#: ../user/team_join_form.php:43 +msgid "Join team" +msgstr "" + +#: ../user/team_lookup.php:84 +msgid "Search Results" +msgstr "" + +#: ../user/team_lookup.php:86 +msgid "Search results for '%1'" +msgstr "" + +#: ../user/team_lookup.php:88 +msgid "You may view these teams' members, statistics, and information." +msgstr "" + +#: ../user/team_lookup.php:98 +msgid "More than 100 teams match your search. The first 100 are shown." +msgstr "" + +#: ../user/team_lookup.php:104 +msgid "" +"End of results. %1 If you cannot find the team you are looking for, you may %" +"2create a team%3 yourself." +msgstr "" + +#: ../user/team_manage.php:26 +msgid "Team administration for %1" +msgstr "" + +#: ../user/team_manage.php:29 +msgid "Edit team info" +msgstr "" + +#: ../user/team_manage.php:30 +msgid "Change team name, URL, description, type, or country" +msgstr "" + +#: ../user/team_manage.php:32 +msgid "Member list:" +msgstr "" + +#: ../user/team_manage.php:33 ../user/team_manage.php:37 +msgid "HTML" +msgstr "" + +#: ../user/team_manage.php:34 +msgid "text" +msgstr "" + +#: ../user/team_manage.php:35 +msgid "View member names and email addresses" +msgstr "" + +#: ../user/team_manage.php:36 +msgid "View change history:" +msgstr "" + +#: ../user/team_manage.php:38 +msgid "XML" +msgstr "" + +#: ../user/team_manage.php:39 +msgid "See when members joined or quit this team" +msgstr "" + +#: ../user/team_manage.php:50 +msgid "Respond to foundership request." +msgstr "" + +#: ../user/team_manage.php:50 +msgid "If you don't respond by %1, %2 may assume foundership of this team." +msgstr "" + +#: ../user/team_manage.php:55 +msgid "Remove inactive or unwanted members from this team" +msgstr "" + +#: ../user/team_manage.php:57 +msgid "Transfer foundership to another member" +msgstr "" + +#: ../user/team_manage.php:58 +msgid "Add/remove Team Admins" +msgstr "" + +#: ../user/team_manage.php:59 +msgid "Give selected team members Team Admin privileges" +msgstr "" + +#: ../user/team_manage.php:61 +msgid "Remove team" +msgstr "" + +#: ../user/team_manage.php:62 +msgid "Allowed only if team has no members" +msgstr "" + +#: ../user/team_manage.php:64 +msgid "Create or manage a team message board" +msgstr "" + +#: ../user/team_manage.php:71 +msgid "" +"To have this team created on all BOINC projects (current and future) you can " +"make it into a %1BOINC-wide team%2." +msgstr "" + +#: ../user/team_manage.php:73 +msgid "" +"Team admins are encouraged to join and participate in the Google %1boinc-" +"team-founders%2 group." +msgstr "" + +#: ../user/team_manage.php:75 +msgid "" +"Other resources for BOINC team admins are available from a third-party site, " +"%1www.boincteams.com%2." +msgstr "" + +#: ../user/team_manage.php:91 +msgid "Can't delete non-empty team" +msgstr "" + +#: ../user/team_manage.php:95 +msgid "Team %1 deleted" +msgstr "" + +#: ../user/team_members.php:36 +msgid "Limit exceeded: Can only display the first 1000 members." +msgstr "" + +#: ../user/team_members.php:49 +msgid "Members of %1" +msgstr "" + +#: ../user/team_quit_action.php:32 +msgid "Unable to quit team" +msgstr "" + +#: ../user/team_quit_action.php:33 +msgid "Team doesn't exist, or you don't belong to it." +msgstr "" + +#: ../user/team_quit_form.php:31 +msgid "Quit %1" +msgstr "" + +#: ../user/team_quit_form.php:32 +msgid "" +"Please note before quitting a team:\n" +"

      \n" +"
    • If you quit a team, you may rejoin later, or join any other " +"team you desire\n" +"
    • Quitting a team does not affect your personal credit statistics " +"in any way.\n" +"
    " +msgstr "" + +#: ../user/team_quit_form.php:40 +msgid "Quit Team" +msgstr "" + +#: ../user/team_remove_inactive_action.php:31 +msgid "Removing users from %1" +msgstr "" + +#: ../user/team_remove_inactive_action.php:39 +msgid "%1 is not a member of %2" +msgstr "" + +#: ../user/team_remove_inactive_action.php:42 +msgid "%1 has been removed" +msgstr "" + +#: ../user/team_remove_inactive_form.php:32 +msgid "Remove members from %1" +msgstr "" + +#: ../user/team_remove_inactive_form.php:39 +msgid "Remove?" +msgstr "" + +#: ../user/team_remove_inactive_form.php:40 +msgid "Name (ID)" +msgstr "" + +#: ../user/team_remove_inactive_form.php:65 +msgid "No members are eligible for removal." +msgstr "" + +#: ../user/team_remove_inactive_form.php:68 +msgid "Remove users" +msgstr "" + +#: ../user/team_search.php:68 +msgid "Team name" +msgstr "" + +#: ../user/team_search.php:92 +msgid "Team search results" +msgstr "" + +#: ../user/team_search.php:94 +msgid "No teams were found matching your criteria. Try another search." +msgstr "" + +#: ../user/team_search.php:96 +msgid "Or you can %1create a new team%2." +msgstr "" + +#: ../user/team_search.php:100 +msgid "" +"The following teams match one or more of your search criteria.\n" +" To join a team, click its name to go to the team page,\n" +" then click %1Join this team%2." +msgstr "" + +#: ../user/team_search.php:107 +msgid "Change your search" +msgstr "" + +#: ../user/team_search.php:181 +msgid "" +"You can team up with other people with similar interests, or from the same " +"country, company, or school." +msgstr "" + +#: ../user/team_search.php:183 +msgid "Use this form to find teams that might be right for you." +msgstr "" + +#: ../user/team_search.php:188 +msgid "%1I'm not interested%2 in joining a team right now." +msgstr "" + +#: ../user/top_hosts.php:67 ../user/top_teams.php:100 +#: ../user/top_users.php:112 +msgid "Limit exceeded - Sorry, first %1 items only" +msgstr "" + +#: ../user/top_hosts.php:82 +msgid "Top hosts" +msgstr "" + +#: ../user/top_teams.php:105 +msgid "Top %1 teams" +msgstr "" + +#: ../user/top_teams.php:108 +msgid "There are no %1 teams" +msgstr "" + +#: ../user/top_users.php:64 +msgid "Participant since" +msgstr "" + +#: ../user/uotd.php:29 +msgid "No user of the day has been chosen." +msgstr "" + +#: ../user/uotd.php:33 +msgid "User of the Day for %1: %2" +msgstr "" + +#: ../user/user_search.php:51 +msgid "Filters" +msgstr "" + +#: ../user/user_search.php:52 +msgid "User name starts with" +msgstr "" + +#: ../user/user_search.php:53 +msgid "Any" +msgstr "" + +#: ../user/user_search.php:56 +msgid "With profile?" +msgstr "" + +#: ../user/user_search.php:57 ../user/user_search.php:62 +msgid "Either" +msgstr "" + +#: ../user/user_search.php:61 +msgid "On a team?" +msgstr "" + +#: ../user/user_search.php:66 +msgid "Ordering" +msgstr "" + +#: ../user/user_search.php:67 +msgid "Decreasing sign-up time" +msgstr "" + +#: ../user/user_search.php:68 +msgid "Decreasing average credit" +msgstr "" + +#: ../user/user_search.php:69 +msgid "Decreasing total credit" +msgstr "" + +#: ../user/user_search.php:100 +msgid "search string must be at least 3 characters" +msgstr "" + +#: ../user/user_search.php:133 +msgid "User search results" +msgstr "" + +#: ../user/user_search.php:140 +msgid "Joined" +msgstr "" + +#: ../user/user_search.php:148 +msgid "No users match your search criteria." +msgstr "" + +#: ../user/userw.php:35 +msgid "User not found!" +msgstr "" + +#: ../user/userw.php:44 +msgid "Account Data
    for %1
    Time:" +msgstr "" + +#: ../user/userw.php:47 +msgid "Team:" +msgstr "" + +#: ../user/userw.php:48 +msgid "Team TotCred:" +msgstr "" + +#: ../user/userw.php:49 +msgid "Team AvgCred:" +msgstr "" + +#: ../user/userw.php:51 +msgid "Team: None" +msgstr "" + +#: ../user/validate_email_addr.php:30 +msgid "Validate BOINC email address" +msgstr "" + +#: ../user/validate_email_addr.php:31 +msgid "" +"Please visit the following link to validate the email address of your %1 " +"account:" +msgstr "" + +#: ../user/validate_email_addr.php:34 +msgid "Validate email sent" +msgstr "" + +#: ../user/validate_email_addr.php:35 +msgid "" +"An email has been sent to %1. Visit the link it contains to validate your " +"email address." +msgstr "" + +#: ../user/validate_email_addr.php:44 +msgid "No such user." +msgstr "" + +#: ../user/validate_email_addr.php:49 +msgid "Error in URL data - can't validate email address" +msgstr "" + +#: ../user/validate_email_addr.php:54 +msgid "Database update failed - please try again later." +msgstr "" + +#: ../user/validate_email_addr.php:57 +msgid "Validate email address" +msgstr "" + +#: ../user/validate_email_addr.php:58 +msgid "The email address of your account has been validated." +msgstr "" + +#: ../user/view_profile.php:36 +msgid "This user has no profile" +msgstr "" + +#: ../user/view_profile.php:54 +msgid "Profile: %1" +msgstr "" + +#: ../user/view_profile.php:63 +msgid "Account data" +msgstr "" + +#: ../user/weak_auth.php:52 +msgid "" +"You can access your account either by using your email address and " +"password,\n" +" or by using an assigned 'account key'.\n" +" Your account key is:" +msgstr "" + +#: ../user/weak_auth.php:57 +msgid "This key can be used to:" +msgstr "" + +#: ../user/weak_auth.php:59 +msgid "log in to your account on the web" +msgstr "" + +#: ../user/weak_auth.php:61 +msgid "" +"to attach a computer to your account without using the BOINC Manager.\n" +" To do so, install BOINC,\n" +" create a file named %1 in the BOINC\n" +" data directory, and set its contents to:" +msgstr "" + +#: ../user/weak_auth.php:73 +msgid "Weak account key" +msgstr "" + +#: ../user/weak_auth.php:74 +msgid "" +"Your 'weak account key' can be used to attach computers to your account\n" +" as described above, but cannot be used to log in to your account or " +"change it in any way.\n" +" If you want to attach untrusted or insecure computers to your account,\n" +" do so using your weak account key.\n" +" Your weak account key is:" +msgstr "" + +#: ../user/weak_auth.php:81 +msgid "" +"If you change your password, your weak account key changes, and your " +"previous weak account key becomes invalid." +msgstr "" + +#: ../user/workunit.php:32 +msgid "can't find workunit" +msgstr "" + +#: ../user/workunit.php:35 +msgid "Workunit %1" +msgstr "" + +#: ../user/workunit.php:43 +msgid "canonical result" +msgstr "" + +#: ../user/workunit.php:46 +msgid "granted credit" +msgstr "" + +#: ../user/workunit.php:55 +msgid "suppressed pending completion" +msgstr "" + +#: ../user/workunit.php:58 +msgid "minimum quorum" +msgstr "" + +#: ../user/workunit.php:59 +msgid "initial replication" +msgstr "" + +#: ../user/workunit.php:60 +msgid "max # of error/total/success tasks" +msgstr "" + +#: ../user/workunit.php:64 +msgid "errors" +msgstr "" + +#: ../user/workunit.php:67 +msgid "validation" +msgstr "" + +#: ../user/workunit.php:67 +msgid "Pending" +msgstr "" + +#: ../project.sample/project.inc:43 +msgid "Main page" +msgstr "" + +#: ../project.sample/project.inc:45 +msgid "Copyright" +msgstr "" + +#: ../project.sample/project.inc:48 +msgid "Generated" +msgstr "" + +#: ../project.sample/project.inc:79 +msgid "Your personal background." +msgstr "" + +#: ../project.sample/project.inc:83 +msgid "" +"Tell us about yourself. You could tell us where you're from, your age, " +"occupation, hobbies, or anything else about yourself." +msgstr "" + +#: ../project.sample/project.inc:87 +msgid "Your opinions about %1" +msgstr "" + +#: ../project.sample/project.inc:91 +msgid "" +"Tell us your thoughts about %1
      \n" +"
    1. Why do you run %1?\n" +"
    2. What are your views about the project?\n" +"
    3. Any suggestions?\n" +"
    " +msgstr "" + +#: ../project.sample/project_specific_prefs.inc:47 +msgid "Color scheme for graphics" +msgstr "" + +#: ../project.sample/project_specific_prefs.inc:48 +msgid "Maximum CPU % for graphics%10 ... 100%2" +msgstr "" + +#: ../project.sample/project_specific_prefs.inc:49 +msgid "Run only the selected applications" +msgstr "" + +#: ../project.sample/project_specific_prefs.inc:50 +msgid "" +"If no work for selected applications is available, accept work from other " +"applications?" +msgstr "" + +#: ../project.sample/project_specific_prefs.inc:91 +msgid "(all applications)" +msgstr "" diff --git a/locale/ms/BOINC-Setup.po b/locale/ms/BOINC-Setup.po new file mode 100644 index 0000000000..8846f3bf0e --- /dev/null +++ b/locale/ms/BOINC-Setup.po @@ -0,0 +1,119 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-01-26 00:00-0800\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: Installer.cpp:124 +#, c-format +msgid "Sorry, this version of %s requires system 10.5 or higher." +msgstr "" + +#: PostInstall.cpp:130 PostInstall.cpp:1136 uninstall.cpp:1618 +msgid "Yes" +msgstr "" + +#: PostInstall.cpp:131 PostInstall.cpp:1137 uninstall.cpp:1619 +msgid "No" +msgstr "" + +#: PostInstall.cpp:133 +msgid "Should BOINC run even when no user is logged in?" +msgstr "" + +#: PostInstall.cpp:1416 +#, c-format +msgid "" +"Users who are permitted to administer this computer will automatically be " +"allowed to run and control %s.\n" +"\n" +"Do you also want non-administrative users to be able to run and control %s " +"on this Mac?" +msgstr "" + +#: PostInstall.cpp:1444 +#, c-format +msgid "Do you want to set %s as the screensaver for all %s users on this Mac?" +msgstr "" + +#: uninstall.cpp:82 +msgid "OK" +msgstr "" + +#: uninstall.cpp:136 +msgid "Permission error after relaunch" +msgstr "" + +#: uninstall.cpp:141 +msgid "" +"Removal may take several minutes.\n" +"Please be patient." +msgstr "" + +#: uninstall.cpp:156 +#, c-format +msgid "" +"Are you sure you want to completely remove %s from your computer?\n" +"\n" +"This will remove the executables but will not touch %s data files." +msgstr "" + +#: uninstall.cpp:163 +#, c-format +msgid "Canceled: %s has not been touched." +msgstr "" + +#: uninstall.cpp:174 +#, c-format +msgid "An error occurred: error code %d" +msgstr "" + +#: uninstall.cpp:230 +msgid "name of user" +msgstr "" + +#: uninstall.cpp:272 +msgid "" +"Do you also want to remove VirtualBox from your computer?\n" +"(VirtualBox was installed along with BOINC.)" +msgstr "" + +#: uninstall.cpp:312 +#, c-format +msgid "" +"Removal completed.\n" +"\n" +" You may want to remove the following remaining items using the Finder: \n" +"the directory \"%s\"\n" +"\n" +"for each user, the file\n" +"\"%s\"." +msgstr "" + +#: uninstall.cpp:840 +#, c-format +msgid "" +"Enter your administrator password to completely remove %s from you " +"computer.\n" +"\n" +msgstr "" + +#: uninstall.cpp:1616 +msgid "Cancel" +msgstr "" + +#: uninstall.cpp:1617 +msgid "Continue..." +msgstr "" diff --git a/locale/ms/BOINC-Web.po b/locale/ms/BOINC-Web.po new file mode 100644 index 0000000000..d6c0d686a2 --- /dev/null +++ b/locale/ms/BOINC-Web.po @@ -0,0 +1,940 @@ +# BOINC web translation +# Copyright (C) 2008-2009 University of California +# +# This file is distributed under the same license as BOINC. +# +# FileID : $Id$ +# +msgid "" +msgstr "" +"Project-Id-Version: BOINC $Id$\n" +"Report-Msgid-Bugs-To: BOINC translation team \n" +"POT-Creation-Date: 2014-02-01 00:00 PST\n" +"Last-Translator: Generated automatically from source files\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-SourceCharset: utf-8\n" + +#: docutil.php:21 +msgid "Search" +msgstr "" + +#: docutil.php:103 +msgid "Return to BOINC main page" +msgstr "" + +#: docutil.php:114 +#, php-format +msgid "This page is %stranslatable%s." +msgstr "" + +#: download.php:39 +msgid "" +"We recommend that you also install VirtualBox, so your computer can work on " +"science projects that require it." +msgstr "" + +#: download.php:41 +msgid "Learn more about VirtualBox." +msgstr "" + +#: download.php:51 +msgid "Download BOINC + VirtualBox" +msgstr "" + +#: download.php:54 download.php:69 +#, php-format +msgid "for %s" +msgstr "" + +#: download.php:57 download.php:72 +#, php-format +msgid "BOINC version %s" +msgstr "" + +#: download.php:59 +#, php-format +msgid "VirtualBox version %s" +msgstr "" + +#: download.php:67 +msgid "Download BOINC" +msgstr "" + +#: download.php:123 +msgid "" +"BOINC is a program that lets you donate your idle computer time to science " +"projects like SETI@home, Climateprediction.net, Rosetta@home, World " +"Community Grid, and many others." +msgstr "" + +#: download.php:125 +msgid "" +"After installing BOINC on your computer, you can connect it to as many of " +"these projects as you like." +msgstr "" + +#: download.php:127 +msgid "" +"You may run this software on a computer only if you own the computer or have " +"the permission of its owner." +msgstr "" + +#: download.php:132 +msgid "" +"We recommend that you download BOINC from the Google Play Store or Amazon " +"Appstore, not from here." +msgstr "" + +#: download.php:167 +msgid "System requirements" +msgstr "" + +#: download.php:168 +msgid "Release notes" +msgstr "" + +#: download.php:169 index.php:86 +msgid "Help" +msgstr "" + +#: download.php:170 +msgid "All versions" +msgstr "" + +#: download.php:171 +msgid "Version history" +msgstr "" + +#: download.php:172 +msgid "GPU computing" +msgstr "" + +#: download.php:190 +msgid "BOINC: compute for science" +msgstr "" + +#: help.php:12 +#, php-format +msgid "" +"BOINC Online Help lets you talk one-on-one with experienced BOINC users, who " +"can: %s answer questions about BOINC and volunteer computing; %s walk you " +"through the process of installing and using BOINC; %s troubleshoot any " +"problems you might have." +msgstr "" + +#: help.php:21 +#, php-format +msgid "" +"BOINC Online Help is based on %sSkype%s, an Internet-based telephone system. " +"Skype is free (both the software and the calls). If you don't already have " +"Skype, please %sdownload and install it now%s. When you're finished, return " +"to this page." +msgstr "" + +#: help.php:28 +msgid "" +"The best way to get help is by voice, for which you need either built-in " +"microphone and speakers or an external headset for your computer. You can " +"also use Skype's text-based chat system or regular email (if you don't have " +"Skype) to communicate with Help Volunteers." +msgstr "" + +#: help.php:31 +msgid "" +"Volunteers speaking several languages are available. Please select a " +"language:" +msgstr "" + +#: help.php:47 +msgid "Be a Help Volunteer" +msgstr "" + +#: help.php:50 +#, php-format +msgid "" +"If you're an experienced BOINC user, we encourage you to %sbecome a Help " +"Volunteer%s. It's a great way to help the cause of scientific research and " +"volunteer computing - and it's fun!" +msgstr "" + +#: help.php:56 +#, php-format +msgid "" +"If you're already a Help Volunteer: to edit your settings, %sclick here%s." +msgstr "" + +#: help_funcs.php:107 +msgid "" +"BOINC helpers are unpaid volunteers. Their advice is not endorsed by BOINC " +"or the University of California." +msgstr "" + +#: help_funcs.php:110 +msgid "%1Never%2 give email address or password information to BOINC helpers." +msgstr "" + +#: index.php:24 +msgid "Computing power" +msgstr "" + +#: index.php:26 +msgid "Top 100 volunteers" +msgstr "" + +#: index.php:27 +msgid "Statistics" +msgstr "" + +#: index.php:55 +msgid "Active:" +msgstr "" + +#: index.php:55 +msgid "volunteers," +msgstr "" + +#: index.php:55 +msgid "computers.\n" +msgstr "" + +#: index.php:56 +msgid "24-hour average:" +msgstr "" + +#: index.php:56 +msgid "PetaFLOPS." +msgstr "" + +#: index.php:68 +msgid "News" +msgstr "" + +#: index.php:83 +msgid "Volunteer" +msgstr "" + +#: index.php:85 +msgid "Download" +msgstr "" + +#: index.php:87 index.php:120 index.php:171 +msgid "Documentation" +msgstr "" + +#: index.php:88 +msgid "Add-ons" +msgstr "" + +#: index.php:89 +msgid "Links" +msgstr "" + +#: index.php:94 +msgid "" +"Use the idle time on your computer (Windows, Mac, Linux, or Android) to cure " +"diseases, study global warming, discover pulsars, and do many other types of " +"scientific research. It's safe, secure, and easy:" +msgstr "" + +#: index.php:96 +msgid "Choose projects" +msgstr "" + +#: index.php:97 +msgid "Download BOINC software" +msgstr "" + +#: index.php:98 +msgid "Enter an email address and password." +msgstr "" + +#: index.php:102 +#, php-format +msgid "" +"Or, if you run several projects, try an %saccount manager%s such as %" +"sGridRepublic%s or %sBAM!%s. " +msgstr "" + +#: index.php:118 +msgid "Compute with BOINC" +msgstr "" + +#: index.php:121 +msgid "Software updates" +msgstr "" + +#: index.php:128 +msgid "" +"%1Scientists%2: use BOINC to create a %3volunteer computing project%4 giving " +"you the computing power of thousands of CPUs." +msgstr "" + +#: index.php:132 +msgid "" +"%1Universities%2: use BOINC to create a %3Virtual Campus Supercomputing " +"Center%4." +msgstr "" + +#: index.php:137 +msgid "%1Companies%2: use BOINC for %3desktop Grid computing%4." +msgstr "" + +#: index.php:149 +msgid "The BOINC project" +msgstr "" + +#: index.php:155 +msgid "Message boards" +msgstr "" + +#: index.php:156 +msgid "Email lists" +msgstr "" + +#: index.php:157 +msgid "Personnel and contributors" +msgstr "" + +#: index.php:158 +msgid "Events" +msgstr "" + +#: index.php:159 +msgid "Papers and talks" +msgstr "" + +#: index.php:160 +msgid "Research projects" +msgstr "" + +#: index.php:161 +msgid "Logos and graphics" +msgstr "" + +#: index.php:162 +msgid "and" +msgstr "" + +#: index.php:166 +msgid "Help wanted" +msgstr "" + +#: index.php:168 +msgid "Programming" +msgstr "" + +#: index.php:169 +msgid "Translation" +msgstr "" + +#: index.php:170 +msgid "Testing" +msgstr "" + +#: index.php:172 +msgid "Publicity" +msgstr "" + +#: index.php:174 +msgid "Software development" +msgstr "" + +#: index.php:175 +msgid "APIs for add-on software" +msgstr "" + +#: index.php:217 +#, php-format +msgid "" +"Open-source software for %svolunteer computing%s and %sgrid computing%s." +msgstr "" + +#: index.php:230 +msgid "BOINC is based at The University of California, Berkeley" +msgstr "" + +#: projects.inc:14 +msgid "Distributed sensing" +msgstr "" + +#: projects.inc:19 +msgid "Stanford University" +msgstr "" + +#: projects.inc:20 +msgid "Seismology" +msgstr "" + +#: projects.inc:21 +msgid "" +"The Quake-Catcher Network is developing the world's largest seismic network " +"using sensors attached to Internet-connected computers. You must buy a " +"sensor to participate." +msgstr "" + +#: projects.inc:27 +msgid "BOINC Poland Foundation" +msgstr "" + +#: projects.inc:28 +msgid "Environmental research" +msgstr "" + +#: projects.inc:29 +msgid "" +"This project is creating a free and continuously updated map of radiation " +"levels by using sensors connected to volunteers' computers. You must buy a " +"sensor to participate." +msgstr "" + +#: projects.inc:33 +msgid "" +"To participate in these projects you must buy a sensor and attach it to your " +"computer." +msgstr "" + +#: projects.inc:37 +msgid "Cognitive science and artifical intelligence" +msgstr "" + +#: projects.inc:60 projects.inc:364 projects.inc:408 projects.inc:457 +#: projects.inc:464 projects.inc:511 +msgid "Private" +msgstr "" + +#: projects.inc:61 +msgid "Artificial intelligence" +msgstr "" + +#: projects.inc:62 +msgid "" +"Parse and convert semantic nets for use in FreeHAL, an artificial " +"intelligence that uses semantic networks, stemmers, part of speech " +"databases, and part of speech taggers in order to imitate human behavior in " +"conversations." +msgstr "" + +#: projects.inc:69 +msgid "Biology and Medicine" +msgstr "" + +#: projects.inc:82 +msgid "University College Dublin" +msgstr "" + +#: projects.inc:83 +msgid "Antimalarial drug discovery" +msgstr "" + +#: projects.inc:84 +msgid "" +"The parasite that causes malaria continues to evolve resistance to available " +"medication. We therefore urgently need to discover new drugs to replace " +"existing drugs. Importantly, these new drugs need to target NEW proteins in " +"the parasite. The FightMalaria@Home project is aimed at finding these new " +"targets." +msgstr "" + +#: projects.inc:90 +msgid "University of Karlsruhe (Germany)" +msgstr "" + +#: projects.inc:91 +msgid "Protein structure prediction" +msgstr "" + +#: projects.inc:92 +msgid "" +"POEM@HOME uses a computational approach to predict the biologically active " +"structure of proteins, to understand the signal-processing mechanisms when " +"the proteins interact with one another, to understand diseases related to " +"protein malfunction or aggregation, and to develop new drugs on the basis of " +"the three-dimensions structure of biologically important proteins." +msgstr "" + +#: projects.inc:98 +msgid "University of Delaware" +msgstr "" + +#: projects.inc:99 +msgid "Study of protein - ligand interactions" +msgstr "" + +#: projects.inc:100 +msgid "" +"Docking@Home has both bioscience and computer science goals. The project " +"aims to further knowledge of the atomic details of protein-ligand " +"interactions and, by doing so, will search for insights into the discovery " +"of novel pharmaceuticals." +msgstr "" + +#: projects.inc:114 +msgid "Barcelona Biomedical Research Park (PRBB)" +msgstr "" + +#: projects.inc:115 +msgid "Molecular simulations of proteins" +msgstr "" + +#: projects.inc:116 +msgid "" +"GPUGrid.net opens novel computational scenarios by the first full-atom " +"molecular dynamics code (CellMD) specially optimized to run on NVIDIA GPUs. " +"New biomedical applications suddenly become possible giving a new role to " +"computational biology for biomedical research." +msgstr "" + +#: projects.inc:122 +msgid "Technion, Israel" +msgstr "" + +#: projects.inc:123 +msgid "Genetic linkage analysis" +msgstr "" + +#: projects.inc:124 +msgid "" +"Superlink@Technion helps geneticists all over the world find disease-" +"provoking genes causing some types of diabetes, hypertension (high blood " +"pressure), cancer, schizophrenia and many others." +msgstr "" + +#: projects.inc:138 +msgid "" +"University of Maryland Center for Bioinformatics and Computational Biology" +msgstr "" + +#: projects.inc:139 +msgid "Life science research" +msgstr "" + +#: projects.inc:140 +msgid "" +"The Lattice Project supplies computing power to scientists at the University " +"of Maryland studying evolutionary relationships based on DNA sequence data; " +"bacterial, plasmid, and virus protein sequences; and biological diversity in " +"nature reserves. " +msgstr "" + +#: projects.inc:146 +msgid "The Swiss Tropical Institute" +msgstr "" + +#: projects.inc:147 +msgid "Epidemiology" +msgstr "" + +#: projects.inc:148 +msgid "" +"Simulation models of the transmission dynamics and health effects of malaria " +"are an important tool for malaria control. They can be used to determine " +"optimal strategies for delivering mosquito nets, chemotherapy, or new " +"vaccines which are currently under development and testing. Such modeling " +"is extremely computer intensive, requiring simulations of large human " +"populations with a diverse set of parameters related to biological and " +"social factors that influence the distribution of the disease. " +msgstr "" + +#: projects.inc:170 +msgid "University of Washington" +msgstr "" + +#: projects.inc:171 projects.inc:179 +msgid "Biology" +msgstr "" + +#: projects.inc:172 +msgid "" +"Determine the 3-dimensional shapes of proteins in research that may " +"ultimately lead to finding cures for some major human diseases. By running " +"Rosetta@home you will help us speed up and extend our research in ways we " +"couldn't possibly attempt without your help. You will also be helping our " +"efforts at designing new proteins to fight diseases such as HIV, Malaria, " +"Cancer, and Alzheimer's" +msgstr "" + +#: projects.inc:178 +msgid "University of Vienna" +msgstr "" + +#: projects.inc:180 +msgid "" +"Calculate similarities between proteins. SIMAP provides a public database of " +"the resulting data, which plays a key role in many bioinformatics research " +"projects." +msgstr "" + +#: projects.inc:186 +msgid "Earth Sciences" +msgstr "" + +#: projects.inc:198 +msgid "Oxford University" +msgstr "" + +#: projects.inc:199 +msgid "Climate study" +msgstr "" + +#: projects.inc:200 +msgid "" +"Investigate the approximations that have to be made in state-of-the-art " +"climate models. By running the model thousands of times we hope to find out " +"how the model responds to slight tweaks to these approximations - slight " +"enough to not make the approximations any less realistic. This will allow us " +"to improve our understanding of how sensitive our models are to small " +"changes and also to things like changes in carbon dioxide and the sulphur " +"cycle. This will allow us to explore how climate may change in the next " +"century under a wide range of different scenarios." +msgstr "" + +#: projects.inc:207 +msgid "Physical Science" +msgstr "" + +#: projects.inc:213 +msgid "Mechanical engineering" +msgstr "" + +#: projects.inc:214 +msgid "" +"Currently we are calculating the optimum design of a structure call the 52 " +"bar truss" +msgstr "" + +#: projects.inc:224 projects.inc:263 projects.inc:271 +msgid "Astronomy" +msgstr "" + +#: projects.inc:225 +msgid "" +"We will combine the spectral coverage of GALEX, Pan-STARRS1, and WISE to " +"generate a multi-wavelength UV-optical-NIR galaxy atlas for the nearby " +"Universe. We will measure physical parameters (such as stellar mass surface " +"density, star formation rate surface density, attenuation, and first-order " +"star formation history) on a resolved pixel-by-pixel basis using spectral " +"energy distribution (SED) fitting techniques in a distributed computing mode." +msgstr "" + +#: projects.inc:247 +msgid "University of Texas at Austin" +msgstr "" + +#: projects.inc:248 projects.inc:279 +msgid "Chemistry" +msgstr "" + +#: projects.inc:249 +msgid "" +"A common problem in theoretical chemistry, condensed matter physics and " +"materials science is the calculation of the time evolution of an atomic " +"scale system where, for example, chemical reactions and/or diffusion occur. " +"Generally the events of interest are quite rare (many orders of magnitude " +"slower than the vibrational movements of the atoms), and therefore direct " +"simulations, tracking every movement of the atoms, would take thousands of " +"years of computer calculations on the fastest present day computer before a " +"single event of interest can be expected to occur. Our research group is " +"interested in calculating the long time dynamics of systems." +msgstr "" + +#: projects.inc:262 +msgid "University of Illinois at Urbana-Champaign" +msgstr "" + +#: projects.inc:264 +msgid "" +"The goal of Cosmology@Home is to search for the model that best describes " +"our Universe and to find the range of models that agree with the available " +"astronomical particle physics data." +msgstr "" + +#: projects.inc:270 +msgid "Rensselaer Polytechnic Institute" +msgstr "" + +#: projects.inc:272 +msgid "" +"The goal of Milkyway@Home is to create a highly accurate three dimensional " +"model of the Milky Way galaxy using data gathered by the Sloan Digital Sky " +"Survey." +msgstr "" + +#: projects.inc:278 +msgid "Leiden University, The Netherlands" +msgstr "" + +#: projects.inc:280 +msgid "" +"Surface science calculations using Classical Dynamics. Leiden Classical " +"allows volunteers, students and other scientist to submit their personal " +"calculations to the grid. Each user has his own personal queue for Classical " +"Dynamics jobs. In this way students have used the grid to simulate liquid " +"argon, or to test the validity of the ideal gas law by actually doing the " +"simulations through the grid." +msgstr "" + +#: projects.inc:294 +msgid "Univ. of Wisconsin - Milwaukee, Max Planck Institute" +msgstr "" + +#: projects.inc:295 +msgid "Astrophysics" +msgstr "" + +#: projects.inc:296 +msgid "" +"Search for spinning neutron stars (also called pulsars) using data from the " +"LIGO and GEO gravitational wave detectors, and from the Arecibo radio " +"observatory. Einstein@Home is a World Year of Physics 2005 project " +"supported by the American Physical Society (APS) and by a number of " +"international organizations." +msgstr "" + +#: projects.inc:310 projects.inc:318 +msgid "CERN (European Organization for Nuclear Research)" +msgstr "" + +#: projects.inc:311 projects.inc:319 +msgid "Physics" +msgstr "" + +#: projects.inc:312 +msgid "" +"The Large Hadron Collider (LHC) is a particle accelerator at CERN, the " +"European Organization for Nuclear Research, the world's largest particle " +"physics laboratory. It is the most powerful instrument ever built to " +"investigate on particles proprieties. LHC@home runs simulations to improve " +"the design of LHC and its detectors." +msgstr "" + +#: projects.inc:320 +msgid "" +"This project uses CERN-developed virtual machine technology for full-fledged " +"LHC event physics simulation on volunteer computers. Requires that you " +"install VirtualBox on your computer" +msgstr "" + +#: projects.inc:326 +msgid "University of California, Berkeley" +msgstr "" + +#: projects.inc:327 +msgid "Astrophysics, astrobiology" +msgstr "" + +#: projects.inc:328 +msgid "" +"SETI (Search for Extraterrestrial Intelligence) is a scientific area whose " +"goal is to detect intelligent life outside Earth. One approach, known as " +"radio SETI, uses radio telescopes to listen for narrow-bandwidth radio " +"signals from space. Such signals are not known to occur naturally, so a " +"detection would provide evidence of extraterrestrial technology." +msgstr "" + +#: projects.inc:342 +msgid "Bielefeld University of Applied Sciences" +msgstr "" + +#: projects.inc:343 +msgid "Chemical engineering and nanotechnology" +msgstr "" + +#: projects.inc:344 +msgid "" +"The study of molecular magnets and controlled nanoscale magnetism. These " +"magnetic molecules may be used to develop tiny magnetic switches, with " +"applications in medicine (such as local tumor chemotherapy) and " +"biotechnology." +msgstr "" + +#: projects.inc:351 +msgid "Multiple applications" +msgstr "" + +#: projects.inc:356 +msgid "Chinese Academy of Sciences" +msgstr "" + +#: projects.inc:357 +msgid "Physics, biochemistry, and others" +msgstr "" + +#: projects.inc:358 +msgid "" +"The objective of CAS@home is to encourage and assist scientists in China to " +"adopt the technologies of volunteer computing and volunteer thinking for " +"their research." +msgstr "" + +#: projects.inc:365 +msgid "Mathematics, physics, evolution" +msgstr "" + +#: projects.inc:366 +msgid "" +"Yoyo@home is an adapter between BOINC and several existing volunteer " +"computing projects: ECM, Muon, Evolution@home, and distributed.net" +msgstr "" + +#: projects.inc:371 projects.inc:527 +msgid "MTA-SZTAKI Laboratory of Parallel and Distributed Systems (Hungary)" +msgstr "" + +#: projects.inc:372 +msgid "European research projects" +msgstr "" + +#: projects.inc:373 +msgid "" +"The EDGeS@Home Beta project integrates volunteer computing into the service " +"grid network of Europe by allowing service grids to send workunits to be " +"processed by the volunteers of this project. The scientific projects covered " +"by the project include math, physics, biology, etc." +msgstr "" + +#: projects.inc:379 +msgid "Spanish universities and research centers" +msgstr "" + +#: projects.inc:380 +msgid "Various Spanish research projects" +msgstr "" + +#: projects.inc:381 +msgid "Research in physics, material science, and biomedicine" +msgstr "" + +#: projects.inc:387 +msgid "IBM Corporate Citizenship" +msgstr "" + +#: projects.inc:388 +msgid "Medical, environmental and other humanitarian research" +msgstr "" + +#: projects.inc:389 +msgid "" +"To further critical non-profit research on some of humanity's most pressing " +"problems by creating the world's largest volunteer computing grid. Research " +"includes HIV-AIDS, cancer, tropical and neglected diseases, solar energy, " +"clean water and many more." +msgstr "" + +#: projects.inc:395 +msgid "Mathematics, computing, and games" +msgstr "" + +#: projects.inc:401 +msgid "Computer Science" +msgstr "" + +#: projects.inc:409 +msgid "Mathematics, Physics, Artificial Intelligence" +msgstr "" + +#: projects.inc:410 +msgid "Simulation of quantum computing; Goldbach's conjecture." +msgstr "" + +#: projects.inc:450 projects.inc:458 +msgid "Cryptography" +msgstr "" + +#: projects.inc:459 +msgid "" +"Attempt to decode 3 original Enigma messages. The signals were intercepted " +"in the North Atlantic in 1942 and are believed to be unbroken." +msgstr "" + +#: projects.inc:465 projects.inc:504 projects.inc:512 projects.inc:520 +#: projects.inc:528 projects.inc:568 +msgid "Mathematics" +msgstr "" + +#: projects.inc:466 +msgid "Study the Collatz Conjecture, an unsolved conjecture in mathematics" +msgstr "" + +#: projects.inc:471 +msgid "California State University Fullerton" +msgstr "" + +#: projects.inc:472 +msgid "Factorization of large integers" +msgstr "" + +#: projects.inc:473 +msgid "" +"NFS@Home is a research project that uses Internet-connected computers to do " +"the lattice sieving step in the Number Field Sieve factorization of large " +"integers. As a young school student, you gained your first experience at " +"breaking an integer into prime factors, such as 15 = 3 * 5 or 35 = 5 * 7. " +"NFS@Home is a continuation of that experience, only with integers that are " +"hundreds of digits long." +msgstr "" + +#: projects.inc:479 +msgid "" +"Vilnius Gediminas Technical University and Kaunas University of Technology " +"(Lithuania)" +msgstr "" + +#: projects.inc:480 +msgid "Software testing" +msgstr "" + +#: projects.inc:481 +msgid "" +"The aim of this project is to provide a powerful distributed computing " +"platform for scientists of Vilnius Gediminas Technical University (VGTU) as " +"well as others Lithuanian academic institutions. Current applications " +"involve the study of Monte-Carlo based software testing." +msgstr "" + +#: projects.inc:503 +msgid "Mathematical Institute of Leiden University / Kennislink" +msgstr "" + +#: projects.inc:505 +msgid "" +"Search for 'abc-triples': positive integers a,b,c such that a+b=c, a < b " +"< c, a,b,c have no common divisors and c > rad(abc), where rad(n) is the " +"product of the distinct prime factors of n. The ABC conjecture says that " +"there are only finitely many a,b,c such that log(c)/log(rad(abc)) > h for " +"any real h > 1. The ABC conjecture is currently one of the greatest open " +"problems in mathematics. If it is proven to be true, a lot of other open " +"problems can be answered directly from it." +msgstr "" + +#: projects.inc:513 +msgid "" +"Primegrid has multiple projects searching for different forms of very large " +"prime numbers, including searching for the largest known prime number." +msgstr "" + +#: projects.inc:519 +msgid "Hochschule RheinMain University of Applied Sciences" +msgstr "" + +#: projects.inc:521 +msgid "" +"Search for counterexamples to two conjectures related to the identification " +"of prime numbers" +msgstr "" + +#: projects.inc:529 +msgid "" +"Find all the generalized binary number systems (in which bases are matrices " +"and digits are vectors) up to dimension 11." +msgstr "" + +#: ../html/inc/news.inc:40 +msgid "Comment" +msgstr "" + +#: ../html/inc/news.inc:111 +#, php-format +msgid "News is available as an %sRSS feed%s" +msgstr "" diff --git a/tools/process_input_template.cpp b/tools/process_input_template.cpp index 03bc2bd5f6..d9f3958e76 100644 --- a/tools/process_input_template.cpp +++ b/tools/process_input_template.cpp @@ -364,9 +364,16 @@ static int process_workunit( bool found_file_number = false, found_open_name = false; while (!xp.get_tag()) { if (xp.parse_int("file_number", file_number)) { - sprintf(buf, " %s\n", - infiles[file_number].name - ); + INFILE_DESC& id = infiles[file_number]; + if (id.is_remote) { + sprintf(buf, " jf_%s\n", + infiles[file_number].md5 + ); + } else { + sprintf(buf, " %s\n", + infiles[file_number].name + ); + } out += buf; found_file_number = true; continue;